1

以下のようにJavaクライアントプログラムからサーブレットにリクエストを送信していますが、

URL url = new URL("http://localhost:8080/TestWebProject/execute");
HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
httpCon.setDoOutput(true);
httpCon.setRequestMethod("POST");

DataOutputStream out = new DataOutputStream(httpCon.getOutputStream());
out.writeUTF("hello");
out.writeUTF("World");

ByteArrayOutputStream bos;
File baseFile = new File("C:\\Users\\jp\\Desktop\\mdn.txt");

if (!baseFile.exists())
{
    System.out.println("File Not Found Correctly");
}

FileInputStream fis = new FileInputStream(baseFile);

byte[] fileBytes = new byte[1024];
bos = new ByteArrayOutputStream();

while (true)
{
    int ch = fis.read(fileBytes);

    if (ch != -1)
    {
        bos.write(fileBytes, 0, ch);
    }
    else
    {
        break;
    }
}
bos.close();
fis.close();

out.write(bos.toByteArray());

out.writeInt(10);

out.close();



* ** * ** * ** *サーブレット側* ** * ** * ** *

InputStream is = (InputStream) req.getInputStream();

DataInputStream dis = new DataInputStream(is);
System.out.println("NAME US :" + dis.readUTF());
System.out.println("NAME US 1:" + dis.readUTF());

File f = new File("D:\\temp2.txt");
f.createNewFile();

FileOutputStream fos = new FileOutputStream(f);

byte[] fileBytes = new byte[1024];
ByteArrayOutputStream bos = new ByteArrayOutputStream();

while (true)
{
    int ch = dis.read(fileBytes);

    if (ch != -1)
    {
        bos.write(fileBytes, 0, ch);
    }
    else
    {
        break;
    }
}
fos.write(bos.toByteArray());

System.out.println(dis.readInt());

Hello World Also File が上記の場所 temp2.​​txt に正常にコピーされているため、出力が得られます

行 System.out.println(dis.readInt()); で問題が発生しています。EOFに達したとき。

私が間違っているところと、DataInputStreamからデータを読み取る方法。

ありがとう。

4

1 に答える 1

0

ストリームが「空」になるまでループがループし、ループを終了します。しかしその後、ストリームから再度読み込もうとしますが、これは空であり、eof に到達しています。sysout に出力したいデータは何ですか?

編集

次のように、ループに直接FileOutputStream書き込み、ループを書き換えることができます。

FileOutputStream fos=new FileOutputStream(f);

byte[] fileBytes=new byte[1024];
int ch;

while(((ch = dis.read(fileBytes)) != -1) {
   fos.write(fileBytes,0,ch);
}
于 2012-07-18T07:29:34.610 に答える