我在尝试登录时不断收到“你的会话超时”,我怀疑是因为根本没有处理cookie。 HTTPS会阻止我通过Java登录吗?
以下是代码:
<chmod file="${source_path}/${destination.filename}" perm="664"/>
我对Java的网络世界还很陌生,所以非常感谢帮助以及信息来源。
答案 0 :(得分:0)
上面的代码仅适用于http连接。
如果需要通过https连接到URL,则需要使用SSLSocket和SSLSocketFactory类。请看一下这个基本示例:http://www.jguru.com/faq/view.jsp?EID=32388或http://www.javacodegeeks.com/2013/06/java-security-tutorial-step-by-step-guide-to-create-ssl-connection-and-certificates.html
您也可以考虑将代码简化为:
URLObj =新网址(“my_url?userIdentifier = user&amp; password = pass&amp; LoginUser = Sign + In”);