将值从Servlet解析到类中

问题描述 投票:0回答:1

我想在运行时读取用户输入的文本文件(此文件将是“ .java”或“ .c ++”文件)并进行一些计算。我使用MVC架构来实现这一点。

到目前为止我所做的;

GetFileServlet

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    doGet(request, response);

    String value = request.getParameter("code");

    File file = new File("C:\\Users\\User\\Desktop\\"+value);

    String path = file.toString();

    files.setFile(path);
    sizeService.getFile();

    // Read the URL in the file object
    BufferedReader br = new BufferedReader(new FileReader(file));

    // Create a emplty String variable

        // int count = 0;

        String text;
        // Read the file till it's end
        try {
            while ((text  = br.readLine()) != null) {
                //System.out.println(st);

                // Display the file in the web page
                PrintWriter out = response.getWriter();
                out.println(text);
            }
            files.setCode(text);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
}

在该类(GetFileServlet)中,我从用户那里获取文件并读取整个文件,并将该文件的值和路径发送到另一个名为SizeService.java的类。在此类中,我可以获取该文件的路径,但是无法从该文件中获取文本。它给我一个空值。此值通过名为Files.java的类进行解析。当我将文本传递给此类时,它会打印文本。但是,当我尝试使用吸气剂从SizeService.java类访问它时,它不会打印。请帮助我解决这个问题。

而且我还需要一种更好的方法来获取文件路径。

这些是其他类;

SizeService.java

public class SizeService {

Files files = new Files();

public String getFile() {
    String code = files.getCode();
    System.out.println(code + " im in the service"); // This give me a null value
    return code;

}

}

Files.java

公共类文件{

private static String file;
private static String code; 


public Files() {
    super();
    // TODO Auto-generated constructor stub
}

public Files(String file, String code) {
    super();
    Files.code = code;
    Files.file = file;

}

public static String getFile() {
    return file;

}

public void setFile(String file) {
    Files.file = file;

}

public static String getCode() {
    return code;
}

public void setCode(String code) {
    Files.code = code;
}

}

java jsp servlets
1个回答
0
投票
files.setFile(path);

不是file而不是files吗?文件和文件之间存在混淆,文件和文件之间存在混淆,请尝试澄清这一点。

© www.soinside.com 2019 - 2024. All rights reserved.