kabera james

Greenhorn
+ Follow
since May 18, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by kabera james

I think the codes work for the server with no restrictions of range request. now i have to look what to do for the server with it.
Yes is the school project . maybe because we will know many things on HTTP header with this
I do like to use this so. but I do think is the subclass of URLconnection which is forbidden for our project. Any other suggestions please
I don't think so because if what I am saying is true there is no Accept-Range in HTTP header response. Otherwise does this way work only with the server which accept this request

Her is the output for the header


HTTP/1.1 200 OK
Date: Sun, 22 May 2011 11:41:59 GMT
Server: hi
Status: 200 OK
X-Transaction: 1306064519-59527-25959
X-RateLimit-Limit: 150
ETag: "7daf3763c3cc9a1614c71239665257b2"
X-Frame-Options: SAMEORIGIN
Last-Modified: Sun, 22 May 2011 11:41:59 GMT
X-RateLimit-Remaining: 145
X-Runtime: 0.01697
X-Transaction-Mask: a6183ffa5f8ca943ff1b53b5644ef114ff1c24b4
Content-Type: application/atom+xml; charset=utf-8
Content-Length: 18641
Pragma: no-cache
X-RateLimit-Class: api
X-Revision: DEV
Expires: Tue, 31 Mar 1981 05:00:00 GMT
Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0
X-MID: 1ac2fd5bee31c1aef41d6a036052d85cec5ea10f
X-RateLimit-Reset: 1306066301
Set-Cookie: k=91.180.130.76.1306064519651327; path=/; expires=Sun, 29-May-11 11:41:59 GMT; domain=.twitter.com
Set-Cookie: guest_id=13060645196569518; path=/; expires=Tue, 21 Jun 2011 11:41:59 GMT
Set-Cookie: _twitter_sess=BAh7CDoPY3JlYXRlZF9hdGwrCOkBgxcwAToHaWQiJWU4MGEyZDFiOTRiY2Y2%250AYzQ3YjVmNDBjYjYzMWU5OWZlIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVy%250AOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--f5f8c641772b04aa6d210abc34e6fb53b93954e6; domain=.twitter.com; path=/; HttpOnly
Vary: Accept-Encoding
X-XSS-Protection: 1; mode=block
Connection: close
I want to download in parallel the parts of file. I read that some articles say that. I can use HTTP/1.1 to specify the range i want for each part downloaded at each tcp connection, so I wonder if the following codes can help me to establish a connection while specifying the range. Notice when I excute the codes below nothngi change to the ouput. it seems the following part "Range: bytes=0-500\r\n" doesn't change anything.

Any Help I will I appreciate.


URL url = null;

url = new URL("http://twitter.com/statuses/user_timeline/13507732.atom");





try {

Socket socket = new Socket(url.getHost(), 80);
OutputStream os = socket.getOutputStream();
PrintWriter out = new PrintWriter(os);


String query = url.getQuery();
query = (query == null) ? "" : '?' + query;
String hostname = url.getHost();

// send an HTTP request to the web server
out.write("GET " + url.getPath() + query + " HTTP/1.1\r\n" + // The request
"Host: " + hostname + "\r\n" + // Required in HTTP 1.1
"Range: bytes=0-500\r\n" + // The request
"Connection: close\r\n");
out.println();
out.flush();




// read the response
InputStream inputStream =
socket.getInputStream();
InputStreamReader inputStreamReader =
new InputStreamReader(inputStream);
BufferedReader in =
new BufferedReader(inputStreamReader);


String line;



while ((line = in.readLine()) != null) {



System.out.println(line);



}
// Close everything
out.close();
in.close();
socket.close();


} catch (IOException e) {

System.err.println("Problems talking to " +"twitter user" );
e.printStackTrace();
}
}

}
In the project I have to submit this Friday in evening. The professor demand us not use it becaause with is very easy fo example to remove http header
I want to download file in parts using http range header. I want to make the connection on the server without use URLconnection.
Any help or sample codes for how I can begin, I will appreciate. Thank you.
Thank you Paul. really I made mistakes I should add this getDocumentElement() to get all child nodes. now I still have another question how to get the text means the contents of each nodes. here are the ouputs.


Root Node Name: feed
#text
title
#text
id
#text
link
#text
link
#text
updated
#text
subtitle
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
entry
#text
Here is the xml inputstream that I received from this URL "http://twitter.com/statuses/user_timeline/13507732.atom".

The codes suppose to print out the Root no names and his child node name like <title></title>. And then after I will change or adapt the codes to find the content of each nodes.



Thank you

<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns:georss="http://www.georss.org/georss" xmlns="http://www.w3.org/2005/Atom" xmlns:twitter="http://api.twitter.com">
<title>Twitter / sylvainulg</title>
<id>tag:twitter.com,2007:Status</id>
<link type="text/html" href="http://twitter.com/sylvainulg" rel="alternate"/>
<link type="application/atom+xml" href="http://127.0.0.1:8000/statuses/user_timeline/13507732.atom" rel="self"/>
<updated>2011-05-19T16:22:35+00:00</updated>
<subtitle>Twitter updates from sylvainulg / sylvainulg.</subtitle>
<entry>
<title>sylvainulg: http://downrightnow.com/ pour savoir "si c'est normal que (twitter|blogger|...) ne fonctionne pas" sans y passer des heures.</title>
<content type="html">sylvainulg: http://downrightnow.com/ pour savoir "si c'est normal que (twitter|blogger|...) ne fonctionne pas" sans y passer des heures.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/68634436505309184</id>
<published>2011-05-12T11:11:39+00:00</published>
<updated>2011-05-12T11:11:39+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/68634436505309184" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: http://www.run.montefiore.ulg.ac.be/~martin/Grabbers/feedback.html &lt;-- cotes, erreurs courantes, et instructions pour reproduire les tests.</title>
<content type="html">sylvainulg: http://www.run.montefiore.ulg.ac.be/~martin/Grabbers/feedback.html &lt;-- cotes, erreurs courantes, et instructions pour reproduire les tests.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/58626221206024192</id>
<published>2011-04-14T20:22:35+00:00</published>
<updated>2011-04-14T20:22:35+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/58626221206024192" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: 200 OK : check. 301 Moved : check. 404 : check ... soyons fous: testons le Chunked Encoding ...</title>
<content type="html">sylvainulg: 200 OK : check. 301 Moved : check. 404 : check ... soyons fous: testons le Chunked Encoding ...</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/58472421027618816</id>
<published>2011-04-14T10:11:26+00:00</published>
<updated>2011-04-14T10:11:26+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/58472421027618816" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: http://www.scinfo.be/index.php?p=topic&t_id=5581 &lt;-- je vais vous demander de faire sans InputSource pour XLRss. Désolé.</title>
<content type="html">sylvainulg: http://www.scinfo.be/index.php?p=topic&t_id=5581 &lt;-- je vais vous demander de faire sans InputSource pour XLRss. Désolé.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/58183213780180993</id>
<published>2011-04-13T15:02:13+00:00</published>
<updated>2011-04-13T15:02:13+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/58183213780180993" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: http://139.165.223.2/~martin/resources/recvHttpHeaders.java
chose promise, chose due.</title>
<content type="html">sylvainulg: http://139.165.223.2/~martin/resources/recvHttpHeaders.java
chose promise, chose due.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/56379677526327297</id>
<published>2011-04-08T15:35:37+00:00</published>
<updated>2011-04-08T15:35:37+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/56379677526327297" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: http://www.run.montefiore.ulg.ac.be/~martin/grabbers.md5 &lt;- 54 projets reçus. 80% compilent sans heurts. Encourageant.</title>
<content type="html">sylvainulg: http://www.run.montefiore.ulg.ac.be/~martin/grabbers.md5 &lt;- 54 projets reçus. 80% compilent sans heurts. Encourageant.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/53433473976909824</id>
<published>2011-03-31T12:28:27+00:00</published>
<updated>2011-03-31T12:28:27+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/53433473976909824" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: com.sun.org.apache.xpath.internal.XPathAPI est (comme son nom l'indique) une classe interne. on utilise org.apache.xpath.*. merci.</title>
<content type="html">sylvainulg: com.sun.org.apache.xpath.internal.XPathAPI est (comme son nom l'indique) une classe interne. on utilise org.apache.xpath.*. merci.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/53430775038746624</id>
<published>2011-03-31T12:17:44+00:00</published>
<updated>2011-03-31T12:17:44+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/53430775038746624" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: énoncé du TP XLRss : http://www.run.montefiore.ulg.ac.be/cours/iri/tp-xlrss.pdf</title>;
<content type="html">sylvainulg: énoncé du TP XLRss : http://www.run.montefiore.ulg.ac.be/cours/iri/tp-xlrss.pdf</content>;
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/52355954435555328</id>
<published>2011-03-28T13:06:46+00:00</published>
<updated>2011-03-28T13:06:46+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/52355954435555328" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: http://www.wireshark.org/docs/wsug_html_chunked/ChBuildInstallWinInstall.html &lt;-- pour la mise au point des redirections, et tout.</title>
<content type="html">sylvainulg: http://www.wireshark.org/docs/wsug_html_chunked/ChBuildInstallWinInstall.html &lt;-- pour la mise au point des redirections, et tout.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/50950200612749312</id>
<published>2011-03-24T16:00:49+00:00</published>
<updated>2011-03-24T16:00:49+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/50950200612749312" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: quelques précisions sur les classes autorisées/interdites/suggérées/obligatoires: http://www.scinfo.be/index.php?p=topic&t_id=5581</title>;
<content type="html">sylvainulg: quelques précisions sur les classes autorisées/interdites/suggérées/obligatoires: http://www.scinfo.be/index.php?p=topic&t_id=5581</content>;
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/47982898460098560</id>
<published>2011-03-16T11:29:49+00:00</published>
<updated>2011-03-16T11:29:49+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/47982898460098560" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: Ajout du lien vers la Javadoc de l'API XPath. En ligne de commande, "java -cp path/to/xalan.jar:. Grabber" pour s'en servir.</title>
<content type="html">sylvainulg: Ajout du lien vers la Javadoc de l'API XPath. En ligne de commande, "java -cp path/to/xalan.jar:. Grabber" pour s'en servir.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/47948039771537408</id>
<published>2011-03-16T09:11:18+00:00</published>
<updated>2011-03-16T09:11:18+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/47948039771537408" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: n'oubliez pas d'enregistrer votre groupe avant le 28 mars: http://www.run.montefiore.ulg.ac.be/cours/iri/groupes/</title>;
<content type="html">sylvainulg: n'oubliez pas d'enregistrer votre groupe avant le 28 mars: http://www.run.montefiore.ulg.ac.be/cours/iri/groupes/</content>;
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/46143081136926720</id>
<published>2011-03-11T09:39:02+00:00</published>
<updated>2011-03-11T09:39:02+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/46143081136926720" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: a fini de corriger la question 1 de SDO. Merci à la CDC pour vendre du papier sur lequel on sait lire les étudiants.</title>
<content type="html">sylvainulg: a fini de corriger la question 1 de SDO. Merci à la CDC pour vendre du papier sur lequel on sait lire les étudiants.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/45430557588463616</id>
<published>2011-03-09T10:27:43+00:00</published>
<updated>2011-03-09T10:27:43+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/45430557588463616" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: http://www.run.montefiore.ulg.ac.be/cours/iri/tp.html remise à jour. Bon travail sur vos grabbers.</title>
<content type="html">sylvainulg: http://www.run.montefiore.ulg.ac.be/cours/iri/tp.html remise à jour. Bon travail sur vos grabbers.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/43684485031657472</id>
<published>2011-03-04T14:49:27+00:00</published>
<updated>2011-03-04T14:49:27+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/43684485031657472" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: http://www.run.montefiore.ulg.ac.be/~martin/resources/xlrss.pdf -- premier jeu de transparent prêt pour la répèt de demain.</title>
<content type="html">sylvainulg: http://www.run.montefiore.ulg.ac.be/~martin/resources/xlrss.pdf -- premier jeu de transparent prêt pour la répèt de demain.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/43444048811393026</id>
<published>2011-03-03T22:54:03+00:00</published>
<updated>2011-03-03T22:54:03+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/43444048811393026" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: http://139.165.223.2/~martin/resources/charTest.java &lt;-- un outil pour en savoir plus sur les Charsets supportés par Java sur votre machine.</title>
<content type="html">sylvainulg: http://139.165.223.2/~martin/resources/charTest.java &lt;-- un outil pour en savoir plus sur les Charsets supportés par Java sur votre machine.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/42603285986820096</id>
<published>2011-03-01T15:13:09+00:00</published>
<updated>2011-03-01T15:13:09+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/42603285986820096" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: Si vous voulez vous avancer pour le TP d'IRI, faites toujours quelques recherches sur le fonctionnement des flux RSS ... ça fera pas de tort</title>
<content type="html">sylvainulg: Si vous voulez vous avancer pour le TP d'IRI, faites toujours quelques recherches sur le fonctionnement des flux RSS ... ça fera pas de tort</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/39977194851667968</id>
<published>2011-02-22T09:18:00+00:00</published>
<updated>2011-02-22T09:18:00+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/39977194851667968" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: http://www.run.montefiore.ulg.ac.be/~martin/SDO/QuickSortB.html &lt;-- une solution à la question 3c de l'examen de mardi.</title>
<content type="html">sylvainulg: http://www.run.montefiore.ulg.ac.be/~martin/SDO/QuickSortB.html &lt;-- une solution à la question 3c de l'examen de mardi.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/28373072998301696</id>
<published>2011-01-21T08:47:22+00:00</published>
<updated>2011-01-21T08:47:22+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/28373072998301696" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: les cotes du 2eme TP sont affichées aux valves, à côté du bureau du Pr. Wolper.</title>
<content type="html">sylvainulg: les cotes du 2eme TP sont affichées aux valves, à côté du bureau du Pr. Wolper.</content>
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/27660722393583616</id>
<published>2011-01-19T09:36:44+00:00</published>
<updated>2011-01-19T09:36:44+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/27660722393583616" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
<entry>
<title>sylvainulg: précisions sur le getchar (qui devient FAQ) : http://bit.ly/eeubMt</title>;
<content type="html">sylvainulg: précisions sur le getchar (qui devient FAQ) : http://bit.ly/eeubMt</content>;
<id>tag:twitter.com,2007:http://twitter.com/sylvainulg/statuses/11776302784712705</id>
<published>2010-12-06T13:37:44+00:00</published>
<updated>2010-12-06T13:37:44+00:00</updated>
<link type="text/html" href="http://twitter.com/sylvainulg/statuses/11776302784712705" rel="alternate"/>
<link type="image/png" href="http://a2.twimg.com/profile_images/49298662/cool_normal.png" rel="image"/>
<author>
<name>sylvainulg</name>
</author>
<twitter:source>web</twitter:source>
<twitter:place/>
</entry>
</feed>
No I didn't. It seems that I only read the begining and the rest fo the file is empty. which has non sens . many suggestions I got , I dealt with but no change.
Hello Paul. the output I get is only the the root node name. but if you look well . I also make this

NodeList children = document.getChildNodes();
for (int i = 0; i < children.getLength(); i++)
{
String child = children.item(i).getNodeName();

System.out.println(child);

To print the childnode list.

Thank you
Hello william. I know that httpurlconnection can do this but the project I have to submit this Friday. The professor demand not use urlconnection because with it everything is done like remove http header. If you see any way I can deal with this thank you for your help.
I am new in java network and I want to parse xml inputstream but when I' m running this codes to find the Nodechild nothing in output.

Here are my codes. any help I will appreciate, Thank U. I notice that , I don't want to use some classes that remove HTTP header in process.

I am new in java and I want to parse xml inputstream but when, I ma running this codes to find the Nodechild nothing in output.

Here are my codes any help . I will appreciate.



13 years ago