以下のように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からデータを読み取る方法。
ありがとう。