Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从文件中读取一组 url 并解析每个 url 上的 xml 文件(每个基本上都是 xml 文件的链接)。有没有办法声明一个“数组”的网址。我必须递归地将所有 url 传递给 sax 解析器。有什么办法吗?我对java很陌生。
如果您的 URL 是String对象,那么这是要走的路。
String
String[] urls = new String[10]; // Initialize as per your needs.
否则,ArrayList更好。
ArrayList
List<String> urls = new ArrayList<String>(); // Initialize as per your needs.
如果您有URL对象本身,请在上述两种情况下替换String为。URL
URL