Java tutorial
//package com.java2s; public class Main { /** * Replace the characters not allowed in file names with underscore * @param name * @return */ public static String escapeForFileSystem(String name) { return name.replaceAll("[\\\\/:*?\"<>|]+", "_"); } }