0
我想實現如下:詢問的InputStream「System.in」
BufferedInputStream is = new BufferedInputStream(System.in);
int c = 0;
while((c=is.read())!=-1)
Files.copy(is, path3, StandardCopyOption.REPLACE_EXISTING);
Hoewver它陷在等待System.in永遠.. 什麼解決辦法是什麼?
在此先感謝。
它不能在構造塊。你的意思是'is.read()'? –
這是阻止試圖從控制檯讀取..你鍵入任何輸入? –
你是否在控制檯按'return'?在此之前,'System.in'看不到任何輸入。 –