S susu Well-Known Member Licensed User Longtime User Jan 17, 2011 #1 My code below used to work well but today it got strange error (screenshot) B4X: Dim in As InputStream in = File.OpenInput(File.DirInternalCache, "today.xml") parser.Parse(in, "Parser") in.Close What is "org.apache.harmony.xml" ?? Attachments error.jpg 12.5 KB · Views: 400
My code below used to work well but today it got strange error (screenshot) B4X: Dim in As InputStream in = File.OpenInput(File.DirInternalCache, "today.xml") parser.Parse(in, "Parser") in.Close What is "org.apache.harmony.xml" ??
agraham Expert Licensed User Longtime User Jan 17, 2011 #2 org.apache.harmony.xml.ExpatParser is the name of the class that has thrown the ParseException. I guess there is a problem with the contents of your xml. Upvote 0
org.apache.harmony.xml.ExpatParser is the name of the class that has thrown the ParseException. I guess there is a problem with the contents of your xml.
S susu Well-Known Member Licensed User Longtime User Jan 17, 2011 #3 You're right Agraham. My xml file is null so it got error. Thanks for your support. Upvote 0