0

我正在尝试从 android 应用程序读取 xml 文件,但 xml 文件正在从 php 立即生成(所以文件是 .php)

当我从 java 询问该 url 时,我收到此错误: URI 中的预期文件方案:“http://someserver.com/foo/bar/Myuri.php”

try {
          File file = new File(new URI("http://someserver.com/foo/bar/Myuri.php"));
          DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
          DocumentBuilder db = dbf.newDocumentBuilder();
          Document doc = db.parse(file);
          doc.getDocumentElement().normalize();
          System.out.println("Root element " + doc.getDocumentElement().getNodeName());
          NodeList nodeLst = doc.getElementsByTagName("employee");
          //System.out.println("Information of all employees");

          for (int s = 0; s < nodeLst.getLength(); s++) {

            Node fstNode = nodeLst.item(s);

            if (fstNode.getNodeType() == Node.ELEMENT_NODE) {

                   Element fstElmnt = (Element) fstNode;
              NodeList fstNmElmntLst = fstElmnt.getElementsByTagName("name");
              Element fstNmElmnt = (Element) fstNmElmntLst.item(0);
              NodeList fstNm = fstNmElmnt.getChildNodes();
              System.out.println("Name : "  + ((Node) fstNm.item(0)).getNodeValue());
              NodeList lstNmElmntLst = fstElmnt.getElementsByTagName("lastname");
              Element lstNmElmnt = (Element) lstNmElmntLst.item(0);
              NodeList lstNm = lstNmElmnt.getChildNodes();
              System.out.println("Last Name : " + ((Node) lstNm.item(0)).getNodeValue());
            }

          }
          } catch (Exception e) {
            alertDialog.setMessage(e.getMessage());
            alertDialog.show();
          }
4

1 回答 1

1

编辑:好的,现在我们有了一些代码,让我们看看重要的一行:

File file = new File(new URI("http://someserver.com/foo/bar/Myuri.php"));

该类File用于文件。不是任意的 URI。它期望fileURI 中有一个方案,例如file://.

基本上,你不能File用来从网上获取东西。这不是它的目的。使用 HTTP 库,例如HttpClient.

于 2012-12-06T17:27:40.830 回答