我正在尝试将String发送到服务器(在tomcat上运行)并让它返回String。客户端发送字符串,服务器接收它,但是当客户端获取它时,String为空。
doGet()应该设置String in =来自客户端的输入。 但是doPost()正在发送String in null。
为什么呢?我假设doGet()在doPost()之前运行,因为客户端首先调用它。
服务器:
private String in = null;
public void doGet(HttpServletRequest request, HttpServletResponse response)throws IOException,ServletException{
try{
ServletInputStream is = request.getInputStream();
ObjectInputStream ois = new ObjectInputStream(is);
in = (String)ois.readObject();
is.close();
ois.close();
}catch(Exception e){
}
}
public void doPost(HttpServletRequest request, HttpServletResponse response)throws IOException,ServletException{
try{
ServletOutputStream os = response.getOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(os);
oos.writeObject(in);
oos.flush();
os.close();
oos.close();
}catch(Exception e){
}
}
客户端:
URLConnection c = new URL("***********").openConnection();
c.setDoInput(true);
c.setDoOutput(true);
OutputStream os = c.getOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(os);
oos.writeObject("This is the send");
oos.flush();
InputStream is = c.getInputStream();
ObjectInputStream ois = new ObjectInputStream(is);
System.out.println("return: "+ois.readObject());
ois.close();
is.close();
oos.close();
os.close();
答案 0 :(得分:0)
如果您想从客户端读取任意String(或将其发回),那么您只想直接读取和写入字符串:无需使用ObjectInputStream
和ObjectOutputStream
。像这样:
public void doPost(...) {
BufferedReader in = new BufferedReader(request.getReader());
String s = in.readline();
...
}
如果您希望能够将字符串回送给客户端(但也保护其他人的数据),那么您应该使用HttpSession
。如果这应该是某种“echo”服务,你希望任何客户端能够设置字符串值然后所有客户端都返回相同的那个,那么你不应该使用HttpSession
而是使用如上所示,实例范围的引用。