0
私はURLから価値を得たいと思います。いくつかの助けをするか、私は解決策を得ることができるいくつかの役に立つリンクを提供してください。事前に感謝してください。私はアンドロイドのオンラインXMLファイルでスパンクラスの値を取得しようとしています。サンプルコードを使って私に助けてください
try {
URL url = new URL("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml");
URLConnection conn = url.openConnection();
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.parse(conn.getInputStream());
NodeList nodes = doc.getElementsByTagName("Cube");
Element element = (Element) nodes.item(0);
NodeList title = element.getElementsByTagName("Cube");
Element line = (Element) title.item(0);
Toast.makeText(this, "USD " + line.getTextContent().toString(), Toast.LENGTH_SHORT).show();
} catch (Exception e) {
e.printStackTrace();
}
あなたのコードに問題は何で? – Shailesh