J'aurais voulu savoir si quelqu'un avait réussi à utiliser le KXmlParser dans Eclipse. J'ai voulu tester l'exemple du KXmlParser dans Eclipse 3.1.2 avec Carbide mais lorsque j'exécute le programme l'instruction:
KXmlParser parser = new KXmlParser(); ne passe pas et pourtant je ne reçois aucun message d'erreur.
Voici mon programme:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
 
package newsreader;
 
import java.io.*;
import java.util.Vector;
 
import org.kxml2.io.*;
import org.xmlpull.v1.*;
 
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.microedition.io.*;
 
public class Newsreader extends MIDlet implements CommandListener {
 
	static final String URL = "http://www.newsforge.com/newsforge.xml";
	static final String TITLE = "NewsForge";
 
	Vector descriptions = new Vector();
	List newsList = new List(TITLE, Choice.IMPLICIT);
	TextBox textBox = new TextBox("", "", 256, TextField.ANY);
	Display display;
 
	Command backCmd = new Command("Back", Command.BACK, 0);
 
	class ReadThread extends Thread {
 
		public void run() {
			try {
				HttpConnection httpConnection = (HttpConnection) Connector.open(URL);
 
				System.out.println("before");
				KXmlParser parser = new KXmlParser();
				System.out.println("after");
				parser.setInput(new InputStreamReader(httpConnection.openInputStream()));
				System.out.println("after2");
 
				//		parser.relaxed = true;
 
				parser.nextTag();
				parser.require(XmlPullParser.START_TAG, null, "backslash");
 
				while (parser.nextTag () != XmlPullParser.END_TAG)
					readStory(parser);
 
				parser.require(XmlPullParser.END_TAG, null, "backslash");
				parser.next();
 
				parser.require(XmlPullParser.END_DOCUMENT, null, null);
			} catch (Exception e) {
				e.printStackTrace();
				descriptions.addElement(e.toString());
				newsList.append("Error", null);
			}
		}
 
		/** Read a story and append it to the list */
 
		void readStory(KXmlParser parser)
			throws IOException, XmlPullParserException {
 
			parser.require(XmlPullParser.START_TAG, null, "story");
 
			String title = null;
			String description = null;
 
			while (parser.nextTag() != XmlPullParser.END_TAG) {
 
				parser.require(XmlPullParser.START_TAG, null, null);
				String name = parser.getName();
 
				String text = parser.nextText();
 
				System.out.println ("<"+name+">"+text);
 
				if (name.equals("title"))
					title = text;
				else if (name.equals("description"))
					description = text;
 
				parser.require(XmlPullParser.END_TAG, null, name);
			}
			parser.require(XmlPullParser.END_TAG, null, "story");
 
			if (title != null) {
				descriptions.addElement(""+description);
				newsList.append(title, null);
			}
		}
	}
 
	public void startApp() {
		display = Display.getDisplay(this);
		display.setCurrent(newsList);
		newsList.setCommandListener(this);
		textBox.setCommandListener(this);
		textBox.addCommand(backCmd);
		new ReadThread().start();
	}
 
	public void pauseApp() {
	}
 
	public void commandAction(Command c, Displayable d) {
 
		if (c == List.SELECT_COMMAND) {
 
			String text = (String) descriptions.elementAt(newsList.getSelectedIndex());
 
			if (textBox.getMaxSize() < text.length())
				textBox.setMaxSize(text.length());
 
			textBox.setString(text);
			display.setCurrent(textBox);
		} else if (c == backCmd)
			display.setCurrent(newsList);
	}
 
	public void destroyApp(boolean really) {
	}
/*
	public static void main(String[] argv) {
		org.me4se.MIDletRunner.main (new String [] {"Newsreader"});
	}
*/
}
Si quelqu'un a une idée de ce qu'il se passe je suis preneur!

Merci

Ludo