Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XML データを含む File オブジェクトを受け取るメソッドがあります。ファイルは 50 MB を超える場合があります。制御文字や印刷できない文字を削除する便利な方法はありますか。
小さなファイルの場合、ファイルの内容を文字列に読み取り、replaceAll("\p{Cntrl}", "") を使用します。
1)。notepad++またはmswordを使用し、find / replaceを使用します。2)bufferedStreamを使用してJavaプログラムを記述し、文字列トークンを検索して置換します。