NodeList info = stuElement.getChildNodes();
for (int j = 0; jinfo.getLength(); j++) {
info.item(j).getNodeName();
Node n = info.item(j);
if ("name".equals(n.getNodeName())) {
// n.getFirstChild().getNodeValue();
student.setName(n.getLastChild().getNodeValue());
} else if ("age".equals(n.getNodeName())) {
student.setAge(Integer.parseInt(n.getFirstChild()
.getNodeValue()));
}
list.add(student);
}
}
}
} catch (ParserConfigurationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SAXException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// System.out.println(root.getNodeValue());
return list;
}
java代码 读取一个文件夹下的所有文件夹及里面的文件 。我给你个例子,你把其中的路径File file = new File("c:\\tmp\\5");改成你的路径就行了 。
public class Test2
{
public static void main(String[] args)
{
File file = new File("c:\\tmp\\5");
Test2 t = new Test2();
t.method(file);
}
public void method(File f)
{
File[] FList = f.listFiles();
for (int i = 0; iFList.length; i++)
{
if (FList[i].isDirectory()==true)
{
method(FList[i]);
}
else
{
System.out.println(FList[i].getAbsolutePath());
}
}
}
}
java解析文件夹代码的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于java解析文件中的数据、java解析文件夹代码的信息别忘了在本站进行查找喔 。
推荐阅读
- python随机数字函数 python的随机数的函数怎么写
- 使用erp系统管理生产的好处,erp系统在企业管理中的应用
- 手机游戏推荐即时战争,手机游戏推荐即时战争手游
- c语言调用函数删除字符 c语言删除指定字符函数
- 硬盘文件加空间怎么加,硬盘文件加空间怎么加不了
- 快递手机防止调包什么意思,快递手机防止调包什么意思啊
- 国外服务器老是连接超时,国外服务器老是连接超时怎么回事
- Java电商app代码 javaee网上商城项目源码
- sqlserver在建表时指定字段注释,sql创建表加注释