0
嗨,這是我的客戶端程序傳輸圖像,同時傳輸圖像文件它已經損壞,無法打開該圖像文件,我無法識別錯誤,任何一個幫我。無法傳輸圖像文件
DataInputStream input = new DataInputStream(s.getInputStream());
DataOutputStream output = new DataOutputStream(s.getOutputStream());
System.out.println("Writing.......");
FileInputStream fstream = new FileInputStream("Blue hills.jpg");
DataInputStream in = new DataInputStream(fstream);
byte[] buffer = new byte[1000];
int bytes = 0;
while ((bytes = fstream.read(buffer)) != -1) {
output.write(buffer, 0, bytes);
}
in.close();
我試過這個方法它被執行但文件沒有被複制 – 2011-05-03 08:48:59
本地或計算機之間?我證實它適用於本地。 – WhiteFang34 2011-05-03 09:00:30
好的,我會仔細檢查,謝謝你的幫助我 – 2011-05-03 09:04:25