java.net.MalformedURLException: no protocol: XML



我正试图将XML字符串输出到.XML文件中以进行调试。我的字符串如下:

System.out.println("xmlString = n" + xmlString);
===========================================================
INFO: xmlString = 
<?xml version="1.0" encoding="UTF-8"?>
<response>
<lst name="responseHeader">
  <int name="status">0</int>
  <int name="QTime">2</int>
  <lst name="params">
    <str name="indent">true</str>
    <str name="q">source_t:ST</str>
    <str name="wt">xml</str>
  </lst>
</lst>
...

现在,下面的代码是将字符串输出到XML文件中。

try {
                System.out.println("Writing xmlString to xml file");
                File file = new File("xmlString.xml");
                // if file doesnt exists, then create it
                if (!file.exists()) {
                        file.createNewFile();
                }
                FileWriter fw = new FileWriter(file.getAbsoluteFile());
                BufferedWriter bw = new BufferedWriter(fw);
                bw.write(xmlString);
                bw.close();
                System.out.println("Done writing file");
        } catch (IOException e) {
                e.printStackTrace();
        }

但这是我从输出日志中得到的错误:

INFO: Writing xmlString to xml file
INFO: Done writing file
SEVERE: java.net.MalformedURLException: no protocol: <?xml version="1.0" encoding="UTF-8"?>

未创建任何文件。有人能告诉我这是什么意思吗?如何解决这个问题?提前感谢

======================================================================================编辑(我最初认为错误在于FileWritter,这就是我没有发布整个代码的原因):我已经编辑了我的帖子来显示我的整个代码。这段代码实际上是由一个JSP文件调用的。它通过xmlString

public class SAXParserClass {
    //Declare as public since it needs to be redefined for appending into ArrayList
    public static String row[] = new String[5];         //id, full_message_t, source_t, news_t, link_t  
    public ArrayList<String[]> XMLReader(String xmlString)
    {
        //Output: GlassFish Server. Test if String is passed in correctly
        System.out.println("xmlString = n" + xmlString);
        try {
                System.out.println("Writing xmlString to xml file");
                File file = new File("xmlString.xml");
                // if file doesnt exists, then create it
                if (!file.exists()) {
                        file.createNewFile();
                }
                FileWriter fw = new FileWriter(file.getAbsoluteFile());
                BufferedWriter bw = new BufferedWriter(fw);
                bw.write(xmlString);
                bw.close();
                System.out.println("Done writing file");
        } catch (IOException e) {
                e.printStackTrace();
        }
          //Declaration
          final ArrayList<String[]> tableResult = new ArrayList<String[]>();    //Store ArrayList of row[]
          try {
              SAXParserFactory factory = SAXParserFactory.newInstance();
              SAXParser saxParser = factory.newSAXParser();
              DefaultHandler handler = new DefaultHandler() 
              {
                  //When these are TRUE, extract the content
                    boolean b_id = false;
                    boolean b_full_message_t = false;
                    boolean b_source_t = false;
                    boolean b_news_t = false;
                    boolean b_link_t = false;                
                    //############################################################################################
                    //Look for <start> tags
                    public void startElement(String uri, String localName,String qName, 
                            Attributes attributes) throws SAXException {
                            System.out.println("Start Element :" + qName);
                            //Only interested in <str>
                            if (qName.equalsIgnoreCase("str")) {
                                String name = attributes.getValue("name");
                                    //Check for name="id"
                                if(name.equalsIgnoreCase("id")){
                                    b_id = true;
                                }                                
                                    //Check for name="full_message_t"
                                else if(name.equalsIgnoreCase("full_message_t")){
                                    b_full_message_t = true;
                                }
                                else if(name.equalsIgnoreCase("source_t")){
                                    b_source_t = true;
                                }
                                else if(name.equalsIgnoreCase("news_t")){
                                    b_news_t= true;
                                }
                                else if(name.equalsIgnoreCase("link_t")){
                                    b_link_t = true;
                                }                             
                            }//end if
                    }//end startElement
                    //############################################################################################
                    //Look for <end> tags
                    public void endElement(String uri, String localName,
                            String qName) throws SAXException {
                            System.out.println("End Element :" + qName);
                            //When reach </doc>, row Array is complete. Add into ArrayList
                            if (qName.equalsIgnoreCase("doc")) {
                                    System.out.println("Push row into Arraylist : " + row[0]);
                                    tableResult.add(row);
                                    row = new String[5];    //reinitialize String[]
                            }
                    }//end endElement
                    //############################################################################################
                    //Get the content
                    public void characters(char ch[], int start, int length) throws SAXException {
                            if (b_id) {
                                    //System.out.println("id : " + new String(ch, start, length));
                                    row[0] = new String(ch, start, length);
                                    System.out.println("The id is " + row[0]);
                                    b_id = false;
                            }
                            else if (b_full_message_t) {
                                    //System.out.println("fullmsg : " + new String(ch, start, length));
                                    row[1] = new String(ch, start, length);
                                    System.out.println("The fullmsg is " + row[1]);
                                    b_full_message_t = false;
                            }
                            else if (b_source_t) {
                                    //System.out.println("fullmsg : " + new String(ch, start, length));
                                    row[2] = new String(ch, start, length);
                                    System.out.println("The source is " + row[2]);
                                    b_source_t = false;
                            }
                            else if (b_news_t) {
                                    //System.out.println("fullmsg : " + new String(ch, start, length));
                                    row[3] = new String(ch, start, length);
                                    System.out.println("The news is " + row[3]);
                                    b_news_t = false;
                            }
                            else if (b_link_t) {
                                    //System.out.println("fullmsg : " + new String(ch, start, length));
                                    row[4] = new String(ch, start, length);
                                    System.out.println("The link is " + row[4]);
                                    b_link_t = false;
                            }
                    }//end characters
           };//end DefaultHandler
              //############################################################################################
              //Read the String  
              //saxParser.parse("solrTest.xml", handler);
              //File file = new File("solrTest.xml");
              //InputStream inputStream= new FileInputStream(file);
//            Reader reader = new InputStreamReader(xmlString,"UTF-8");
// 
//            InputSource is = new InputSource(reader);
//            is.setEncoding("UTF-8");
              saxParser.parse(xmlString, handler);
           } catch (Exception e) {
             e.printStackTrace();
           }
          //Test output Arraylist
          System.out.println("Test Result!!!");
          for(String[] columns : tableResult){
              for(int i=0; i<columns.length; i++){
                  System.out.println("Number = " + columns[i]);
              }
          }
          //Return the ArrayList of String[]          
          return tableResult;
      }//end XMLReader
}//end class

saxParser.parse(xmlString,handler);

问题就在这里。您正在传递XML字符串,就好像它是一个URL一样。事实并非如此。您需要阅读SAXParser.parse().的Javadoc

注:

  1. 你发布了错误的代码。堆栈跟踪告诉您异常是从哪里抛出的。你显然连看都没看
  2. 当被问到问题时,你没有回答
  3. 你问了一些无关紧要的问题
  4. 你否认做了导致问题的事情,之后有人建议你必须这样做。所以你甚至没有检查

这不是解决问题的合理策略。

相关内容

  • 没有找到相关文章

最新更新