在设备上读写xml文件

时间:2019-10-14 14:51:47

标签: xml

此处的代码适用于台式机,但不适用于设备。看不到文件使它起作用的好方法是什么。

  try {


      inputStream = getClass().getClassLoader().getResourceAsStream("dataRU.xml");


      //FileSystemView.getFileSystemView().getSystemDisplayName(inputStream);
        JAXBContext jc = JAXBContext.newInstance(CoursFrancais.class);
        Unmarshaller u = jc.createUnmarshaller();
        cours = (CoursFrancais) u.unmarshal(inputStream);
        inputStream.close();

    }

0 个答案:

没有答案