如何在java中将url html内容转换为字符串

Pey*_*oel 7 html url file-io

我有一个存储在服务器上的html文件.我有这样的URL路径:<https://localhost:9443/genesis/Receipt/Receipt.html >

我想从url即html文件的源代码中读取这个包含标签的html文件的内容.

我该怎么做?这是一个服务器端代码,不能有浏览器对象,我不确定使用URLConnection是一个不错的选择.

什么应该是现在最好的解决方案?

Vai*_*ibs 9

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

public class URLConetent{
    public static void main(String[] args) {

        URL url;

        try {
            // get URL content

            String a="http://localhost:8080//TestWeb/index.jsp";
            url = new URL(a);
            URLConnection conn = url.openConnection();

            // open the stream and put it into BufferedReader
            BufferedReader br = new BufferedReader(
                               new InputStreamReader(conn.getInputStream()));

            String inputLine;
            while ((inputLine = br.readLine()) != null) {
                    System.out.println(inputLine);
            }
            br.close();

            System.out.println("Done");

        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

    }
}
Run Code Online (Sandbox Code Playgroud)


Pey*_*oel 3

使用 spring 解决了这个问题,将 bean 添加到 spring 配置文件中

  <bean id = "receiptTemplate" class="org.springframework.core.io.ClassPathResource">
    <constructor-arg value="/WEB-INF/Receipt/Receipt.html"></constructor-arg>
  </bean>
Run Code Online (Sandbox Code Playgroud)

然后在我的方法中阅读它

        // read the file into a resource
        ClassPathResource fileResource =
            (ClassPathResource)context.getApplicationContext().getBean("receiptTemplate");
        BufferedReader br = new BufferedReader(new FileReader(fileResource.getFile()));
        String line;
        StringBuffer sb =
            new StringBuffer();

        // read contents line by line and store in the string
        while ((line =
            br.readLine()) != null) {
            sb.append(line);
        }
        br.close();
        return sb.toString();
Run Code Online (Sandbox Code Playgroud)