2
這有點讓人迷惑。在複製這兩個文件下一批片斷結果:用Java複製文件跳過連續兩個空格的文件名
xcopy "C:\Source\Spaces1 [ ].txt" "C:\Target\" /Y
xcopy "C:\Source\Spaces2 [ ].txt" "C:\Target\" /Y
而下面的Java代碼片段使用流也導致複製這兩個文件:
public static void main(final String args[]) throws IOException
{
final File source1 = new File("C:\\Source", "Spaces1 [ ].txt");
final File target1 = new File("C:\\Target", "Spaces1 [ ].txt");
fileCopy(source1, target1);
final File source2 = new File("C:\\Source", "Spaces2 [ ].txt");
final File target2 = new File("C:\\Target", "Spaces2 [ ].txt");
fileCopy(source2, target2);
}
public static void fileCopy(final File source, final File target) throws IOException
{
try (InputStream in = new BufferedInputStream(new FileInputStream(source));
OutputStream out = new BufferedOutputStream(new FileOutputStream(target));)
{
final byte[] buf = new byte[4096];
int len;
while (0 < (len = in.read(buf)))
{
out.write(buf, 0, len);
}
out.flush();
}
}
然而,在這個片段中,其中一個文件是不是複製(跳過雙空格):
public static void main(final String args[]) throws Exception
{
final Runtime rt = Runtime.getRuntime();
rt.exec("xcopy \"C:\\Source\\Spaces1 [ ].txt\" \"C:\\Target\\\" /Y").waitFor();
// This file name has two spaces in a row, and is NOT actually copied
rt.exec("xcopy \"C:\\Source\\Spaces2 [ ].txt\" \"C:\\Target\\\" /Y").waitFor();
}
這是怎麼回事?這將用於從誰知道什麼來源複製文件,人們可以在其中輸入他們喜歡的任何內容。文件名被消毒,但誰連續處理兩個空格?我在這裏錯過了什麼?
當前使用Java 8,但Java 6和7給出了相同的結果。
我試着用斜槓(不起作用)轉義空格,並試圖用'%20'替換空格(不起作用)。而且,是的,我已經知道我可以使用Robocopy。 –
你有沒有試過先複製雙空間文件,然後單個空間文件,並給出相同的結果呢? –
是的,我確實嘗試過。好的建議,但結果相同。 –