在本地用Java程序获取服务器上的时间,具体怎么做?给代码最好。

在本地用Java程序获取服务器上的时间,具体怎么做?给代码最好。,第1张

用servlet
public void service(ServletRequest request, ServletResponse response)
throws ServletException, IOException {
String time =(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"))format(new Date());
PrintWriter out = responsegetWriter();
outprintln("<html>");
outprintln("<body>");
outprintln("<h1>");
outprintln(time);
outprintln("</h1>");
outprintln("</body>");
outprintln("</html>");
}

list = sessioncreateQuery("from Oprations as op where ophelpId='"+uid+"' and opnowMode='"+con+"'")list();
报错
orghibernateexceptionSQLGrammarException: could not execute query
重起一下试试


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/12577754.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-26
下一篇 2023-05-26

发表评论

登录后才能评论

评论列表(0条)

保存