我想在作为服务器的java程序和作为客户端的greasemonkey(java脚本应用程序)之间建立连接。
我可以从客户端接收数据,但是如何将数据从服务器发送到客户端? 我在服务器中使用OutputStream将数据发送到客户端,但似乎它不起作用。在客户端,我使用下面的代码发送和接收数据:
GM_xmlhttpRequest({
method: 'POST',
url: "http://localhost:8888",
headers: {
'Content-type' : 'application/x-www-form-urlencoded',
},
data : 'page_contents=' + window.location,
onload : function(responseDetails) {
alert('Request for Atom feed returned ' + responseDetails.status +
' ' + responseDetails.statusText + '\n\n' +
'Feed data:\n' + responseDetails.responseText);
}
});
我在服务器中使用OutputStream,但似乎它不起作用或不关联任何outputStream :(我尝试基本通信,但它不起作用,只收到数据)
ServerSocket srvr = new ServerSocket(8888);
Socket skt = srvr.accept();
BufferedReader in = new BufferedReader(new InputStreamReader(skt.getInputStream()));
System.out.print("Received string: '");
String input="";
while (!in.ready()) {}
while((input = in.readLine())!=null){
System.out.println("-"+input); // Read one line and output it
}
in.close();
//now I want to send some data to greasmonkey.
PrintWriter out = new PrintWriter(skt.getOutputStream(), true);
System.out.print("Sending string: '" + data + "'\n");
//the line above, never has printed in console. i don't know why?
out.print(data);
}}
任何建议都会受到高度赞赏。
非常感谢。
答案 0 :(得分:1)
当您使用Java时,我猜您正在使用Servlet与服务器进行通信。
有效示例可能如下所示:
public class myServlet extends HttpServlet {
public void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException
{
response.setContentType("text/html");
// for text data you could write something like this:
PrintWriter output = response.getWriter();
output.println("Hello, World\n");
// for binary data you could use the output stream this way:
// Object binary_data = new Object();
// ServletOutputStream output = response.getOutputStream();
// output.print(binary_data);
}
对于更高级的输出,我会选择使用像spring web mvc这样的框架 方便地支持提供JSP视图和封装对输出流的低级访问。
希望这有帮助