Problem in getting url.getContent()

前端 未结 2 529
别跟我提以往
别跟我提以往 2020-12-22 12:24

I have a problem in my hand.

I have a URL, And when i initiate the connect to this url and execute url.getContent(). The response is of type sun.net.www.protoc

2条回答
  •  一整个雨季
    2020-12-22 12:54

    You should use the openStream method of the url class.

    Code snippet:

    InputStream in = url.openStream();
    BufferedReader reader = new BufferedReader(new InputStreamReader());
    String line = reader.readLine();
    

    If the output is not in a readable string format, then use:

    InputStream in = url.openStream();
    byte[] buffer = new byte[512];
    int bytesRead = in.read(buffer);
    

提交回复
热议问题