| By XMLDEV Mailing List: An Email Discussion Forum for W3C XML technologies and XML development trends. | Article Rating: |
|
| October 28, 2008 07:12 AM EDT | Reads: |
213 |
----- Original Message From: "Jack Bush" > I appears to have difficulty closing (possibly flushing it first) an > XML file that was subsequently being parsed without success. > ... If you don't get an answer here you could try the xmlbeans list at user@x... . HTH, Pete Cordell Codalogic Ltd Interface XML to C++ the easy way using XML C++ data binding to convert XSD schemas to C++ classes. Visit http://www.codalogic.com/lmx/ for more info ----- Original Message ----- From: "Jack Bush" Sent: Monday, October 27, 2008 10:03 PM Subject: Cannot close an XML file used for parsing Hi All, I appears to have difficulty closing (possibly flushing it first) an XML file that was subsequently being parsed without success. The error generated is: org.jdom.input.JDOMParseException: Error on line 23: The element type "form" must be terminated by the matching end-tag "</form>". Below is the code snippets of readData() to retrieve (HTML) data from a website, save it to a file, then convert to XML format before returning the new filename: public String readData() { try { URL url = new URL("http://www.abc.com"); URLConnection connection = url.openConnection(); InputStream isInHtml = url.openStream(); // throws an IOException disInHtml = new DataInputStream(new BufferedInputStream(isInHtml)); System.out.flush(); FileOutputStream fosOutHtml = null; fosOutHtml = new FileOutputStream("C:\\Temp\\ABC..html"); int oneChar, count=0; while ((oneChar=disInHtml.read()) != -1) fosOutHtml.write(oneChar); isInHtml.close(); disInHtml.close(); fosOutHtml.flush(); // optional fosOutHtml.close(); ..... } try { File fileInHtml = new File("C:\\Temp\\ABC.html"); FileReader frInHtml = new FileReader(fileInHtml); BufferedReader brInHtml = new BufferedReader(frInHtml); String string = ""; while (brInHtml.ready()) string += brInHtml.readLine() + "\n"; fwOutXml = new FileWriter("C:\\Temp\\ABC.xml"); pwOutXml = new PrintWriter(fwOutXml); light_html2xml html2xml = new light_html2xml(); pwOutXml.print(html2xml.Html2Xml(string)); system.out.flush() // optional fwOutXml.flush(); // optional fwOutXml.close(); pwOutXml.flush(); // optional pwOutXml.close(); return fileInHtml.getAbsolutePath(); .... } } // parseData reads the XML file using the name returned by readData() public void parseData(String XMLFilename) { try { FileReader frInXml = new FileReader(FileName); BufferedReader brInXml = new BufferedReader(frInXml); SAXBuilder saxBuilder = new SAXBuilder("org.apache.xerces.parsers.SAXParser"); // JDOMParseException generated. ..... } These codes would worked when they were in a single method but I have since placed some structure around them using a number methods. This issue has risen in th past where I have been able to close the XML file prior to reading them again. However, I don't have a solution for it this time round. I am running JDK 1.6.0_10, Netbeans 6.1, JDOM 1.1 on Windows XP platform. Any assistance would be appreciated. Many thanks, Jack Make the switch to the world's best email. Get Yahoo!7 Mail! http://au.yahoo.com/y7mail
CIO, CTO & Developer Resources
Read the original blog entry...
Published October 28, 2008 Reads 213
Copyright © 2008 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
Related Stories
- 4th International Cloud Computing Conference & Expo Starts Today
- Cloud Expo New York Call for Papers Deadline December 15
- Wave on Ulitzer: Confessions of a Google Wave Fanboy
- GovIT Expo Highlights Cloud Computing
- Google Wave
- Adaptivity & Cloud Computing: Exclusive Q&A with CEO Tony Bishop
- Cloud Computing Can Revitalize Your Career as Software Developer
- Oracle+MySQL Opponents Take to the Barricades
- Virtualization Expo Call for Papers Deadline December 15
- Vivek Kundra: "Engage the American People in their Daily Digital Lives"
- Instant Professionalism Online Despite Yourself...with Ulitzer
- Software Should Be Creative
- 4th International Cloud Computing Conference & Expo Starts Today
- Yahoo! Named “Platinum Sponsor” of Cloud Computing Expo
- Deputy CIO of the CIA to Keynote 1st Annual GovIT Expo
- Cloud Expo New York Call for Papers Deadline December 15
- Cloud Computing Expo: Exclusive Q&A with Yahoo! SVP Cloud Computing
- Wave on Ulitzer: Confessions of a Google Wave Fanboy
- GovIT Expo Highlights Cloud Computing
- Google Wave
- Live Demo of Yahoo! Query Language to be Given at 4th Cloud Computing Expo
- Adaptivity & Cloud Computing: Exclusive Q&A with CEO Tony Bishop
- Cloud Computing Can Revitalize Your Career as Software Developer
- IBM Goes After Gmail
- Where Are RIA Technologies Headed in 2008?
- Personal Branding Checklist
- The Top 250 Players in the Cloud Computing Ecosystem
- Wal-Mart To Sell $399 Ubuntu Linux-based Laptop with Google Operating System
- Google's OpenSocial: A Technical Overview and Critique
- Why Microsoft Loves Google's Android
- Web 2.0 Is Dead And It's Time To Get Out Of This Mess!
- i-Technology Blog: Google Trends on Java, McNealy, AJAX, and SOA Give Pause For Thought
- Android: Who Hates Google Over the Phone?
- Google Sales Surge 57% and Net Income 46% in Quarter 3
- i-Technology Blog: Is There Life Beyond Google?
- Social Network Wars: Google + Everyone Else vs Facebook





























