1

我在使用我在 weblogic 域的文件夹中创建的 csv 文件时遇到问题。我能够创建文件,但是单击一个按钮,我需要获取该文件并将其显示给用户

有人可以帮助mw吗pleaseeeee。在读取我在 weblogic 域目录中创建的 CSV 文件时遇到问题,但最终出现异常错误 404--未从 RFC 2068 超文本传输​​协议--HTTP/1.1:10.4.5 404 未找到

/testDomain/CSV

在代码片段下方

fileName = "CSV"+detailsMap.get("fileName").toString();
MessageBox.show(new MessageBoxConfig() {
                 {
setTitle("Alert");//Result


 // InputStream in = this.getClass().getClassLoader().getResourceAsStream(fileName); 
   //  final String file =in.toString();
    setMsg("Upload of Distribution Lists partially successful. Please acknowledge to find the failed entries");
   setButtons(MessageBox.OK);
   setWidth(250);
                                 setCallback(new MessageBox.PromptCallback() {
                             public void execute(String btnID, String text) {
                                 System.out.println("inside execute methoddd");
                                 Window.open(fileName, "_self",null);
                                 //Window.
            }
                         });
                }});`
4

0 回答 0