试试这个:
public static String getURLData( String url ) {
// creates a StringBuilder to store the data
StringBuilder out = new StringBuilder();
try {
// creating the URL
URL u = new URL( url );
// openning a connection
URLConnection uCon = u.openConnection();
// getting the connection's input stream
InputStream in = uCon.getInputStream();
// a buffer to store the data
byte[] buffer = new byte[2048];
// try to insert data in the buffer until there is data to be read
while ( in.read( buffer ) != -1 ) {
// storing data...
out.append( new String( buffer ) );
}
// closing the input stream
in.close();
// exceptions...
} catch ( MalformedURLException exc ) {
exc.printStackTrace();
} catch ( IOException exc ) {
exc.printStackTrace();
} catch ( SecurityException exc ) {
exc.printStackTrace();
} catch ( IllegalArgumentException exc ) {
exc.printStackTrace();
} catch ( UnsupportedOperationException exc ) {
exc.printStackTrace();
}
// returning data
return out.toString();
}
如果您需要使用代理,则需要做更多的工作,因为您需要进行身份验证。在这里您可以阅读有关它的内容:如何使 HttpURLConnection 使用代理?
如果你想要一个像浏览器一样工作的客户端,你可以试试Apache HttpComponentes的 HttpClient
现在,如果您需要服务器通知客户端的行为,那么您将需要使用其他方法,例如创建自己的服务器和使用套接字。如果您使用常规浏览器,则可以使用 websockets,但似乎不是您的情况。