Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > Java Programming > Java Forum > ช่วยแก้ error JAVA Webservice ให้หน่อยค่ะ กำลังศึกษาค่ะแต่ไม่ค่อยเข้าใจ



 

ช่วยแก้ error JAVA Webservice ให้หน่อยค่ะ กำลังศึกษาค่ะแต่ไม่ค่อยเข้าใจ

 



Topic : 074074

Guest




DOMRead.java

import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.DocumentBuilder;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.DOMException;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import java.io.IOException;
import java.io.File;
import javax.swing.JOptionPane;

public class DOMRead1 {


	public static void main(String[] args) {
		String filename="customers.xml";
		String output="";
		try{
			DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance();//reserve storage area
			DocumentBuilder parser=factory.newDocumentBuilder();//create parser object
			Document doc=parser.parse(new File(filename));//read and check document,safe to document object
			Element  root=doc.getDocumentElement();//declare element for keep root element
			NodeList customerList=root.getElementsByTagName("customer");//has more Contact element
			Element emCustomer,temp;//declare child elements in Contact element
			Node node;
			for(int i=0;i<customerList.getLength();i++){
				
				emCustomer=(Element)customerList.item(i);
				temp=(Element)emCustomer.getElementsByTagName("customer").item(0);
				output+="customer:"+temp.getAttribute("id")+"\n";

				node=temp.getElementsByTagName("Mr").item(0);
				output+=temp.getTagName()+"\n";
				
				NodeList profileList=temp.getElementsByTagName("profile");
				for(int j=0;j<profileList.getLength();j++){
					node=profileList.item(j);
					output+=node.getNodeName()+":"+node.getFirstChild().getNodeValue()+"\n";
				}
				node=temp.getElementsByTagName("occupation").item(0);
				output+="Occupation:"+node.getFirstChild().getNodeValue()+"\n";
				
				temp=(Element)emCustomer.getElementsByTagName("birthplace").item(0);
				output+="Country:"+temp.getAttribute("county")+"\n";
				node=temp.getElementsByTagName("birthplace").item(0);
				output+="Birthplace:"+node.getFirstChild().getNodeValue()+"\n";			
				output+="\n";
				
			}//end loop
			JOptionPane.showMessageDialog(null, output);
			
		}
		catch(DOMException d){
			d.printStackTrace();
		}
		catch(IOException io){
			io.printStackTrace();
		}
		catch(Exception e){
			e.printStackTrace();
		}
		
		
		

	}

}



customers.xml
<?xml version="1.0"?>
<customers>
  <customer id="HO107163">
    <Mr />
    <profile>
      <firstName>Jeff</firstName>
      <middleName>Craig</middleName>
      <lastName>Rafter</lastName>
      <sex>m</sex>
      <age>64</age>
    </profile >
    <occupation >Rector of Ringwould Kent</occupation>
    <birthplace county="KEN">Margate</birthplace>
  </customer>
  <customer id="HO107100">
    <Mr />
    <profile>
      <firstName>Georgiana</firstName>
      <middleName>Georgiana</middleName>
      <lastName>Monins</lastName>
      <sex>f</sex>
      <age>39</age>
    </profile>
    <occupation>Gentlewoman</occupation>
    <birthplace>Canterbury</birthplace>
  </customer>
  <customer id="HO107105">
    <Mr />
    <profile>
      <firstName>Ann</firstName>
      <middleName>Anny</middleName>
      <lastName>Gaslinge</lastName>
      <sex>f</sex>
      <age>39</age>
    </profile>
    <occupation>House servant</occupation>
    <birthplace county="KEN">Staple</birthplace>
  </customer>


ช่วยแก้errorให้ทีค่ะ ขอบคุณค่ะ

ผลลัพธ์ที่ต้องการ

output



Tag : WebService







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2012-02-17 23:14:12 By : TheCatzika View : 1496 Reply : 1
 

 

No. 1

Guest


ตอนนี้ทำได้แล้วค่ะ ^^






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-02-18 18:55:15 By : TheCatzika
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยแก้ error JAVA Webservice ให้หน่อยค่ะ กำลังศึกษาค่ะแต่ไม่ค่อยเข้าใจ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่