I am trying to get my sltag value but I got some errors in my code. Please help me solve this error.
I have one XML file. I want to display that XML file node value one spinner and child node value value one tab etc... so I am using a SAX parser. This is my XML file. First, please see this:
<?xml version="1.0" encoding="utf-8"?>
<test>
<hltag>
<name>test1</name>
<sltag>
<name>stest1</name>
<path>/mnt/sdcard/videoicon.png</path>
<model>
<mimage>img1</mimage>
<name>mtest1</name>
<spec>paragraph1</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest2</name>
<path>/mnt/sdcard/profileicon.png</path>
<model>
<name>mtest2</name>
<mimage>img2</mimage>
<spec>paragraph2</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest3</name>
<path>/mnt/sdcard/spec1.png</path>
<model>
<mimage>img3</mimage>
<name>mtest3</name>
<spec>paragraph3</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest4</name>
<path>/mnt/sdcard/Hp-Pictures-Folder-icon.png</path>
<model>
<mimage>img4</mimage>
<name>mtest4</name>
<spec>paragraph4</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest5</name>
<path>/mnt/sdcard/ima.png</path>
<model>
<mimage>img5</mimage>
<name>mtest5</name>
<spec>paragraph5</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
</hltag>
<hltag>
<name>test2</name>
<sltag>
<name>stest6</name>
<path>/mnt/sdcard/bala/imgbala2.jpeg</path>
<model>
<mimage>img6</mimage>
<name>mtest6</name>
<spec>paragraph6</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest7</name>
<path>/mnt/sdcard/sundar/imgsundar2.jpeg</path>
<model>
<mimage>img7</mimage>
<name>mtest7</name>
<spec>paragraph7</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest8</name>
<path>/mnt/sdcard/suresh/imgsuresh2.jpeg</path>
<model>
<mimage>img8</mimage>
<name>mtest8</name>
<spec>paragraph8</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest9</name>
<path>/mnt/sdcard/sham/imgsham2.jpeg</path>
<model>
<mimage>img9</mimage>
<name>mtest9</name>
<spec>paragraph9</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest10</name>
<path>/mnt/sdcard/siva/imgsiva2.jpeg</path>
<model>
<mimage>img10</mimage>
<name>mtest10</name>
<spec>paragraph10</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
</hltag>
<hltag>
<name>test3</name>
<sltag>
<name>stest11</name>
<path>/mnt/sdcard/bala/imgbala1.jpeg</path>
<model>
<mimage>img11</mimage>
<name>mtest11</name>
<spec>paragraph11</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest12</name>
<path>/mnt/sdcard/sundar/imgsundar1.jpeg</path>
<model>
<mimage>img12</mimage>
<name>mtest12</name>
<spec>paragraph12</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest13</name>
<path>/mnt/sdcard/suresh/imgsuresh2.jpeg</path>
<model>
<mimage>img13</mimage>
<name>mtest13</name>
<spec>paragraph13</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest14</name>
<path>/mnt/sdcard/sham/imgsham2.jpeg</path>
<model>
<mimage>img14</mimage>
<name>mtest14</name>
<spec>paragraph14</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
<sltag>
<name>stest15</name>
<path>/mnt/sdcard/siva/imgsiva2.jpeg</path>
<model>
<mimage>img15</mimage>
<name>mtest15</name>
<spec>paragraph15</spec>
<imageList>/mnt/sdcard/test1.jpeg</imageList>
<videoList>/mnt/sdcard/golf.3gp</videoList>
</model>
</sltag>
</hltag>
</test>
Now I got my hltag value successfully. My problem is how to get my sltag values? The sltag have two subchild, 1 is name and another one is path. I wish to store both values to separate arraylist. I wish to show that sltag name value in my 2nd spinner that's all so trying to write code I am getting error:
error java file name is parsedExampleDataSet.java see link 2 full source code...
error lines
public ArrayList<Subchild> getSLTag() {
ArrayList<String> SLTag = new ArrayList <Sting>();
for(int i = 0; i<xmlTagInfo.size(); i++);
SLTag.add(xmlTagInfo.get(i).sltag);
}
2nd and 4th line error error is
Multiple markers at this line
- Sting cannot be resolved to a type
- ArrayList cannot be resolved to a type
i cannot be resolved
My full source code links here: 1. http://paste.org/44043 2. http://paste.org/44044 3. http://paste.org/44052 4. http://paste.org/44053 5. http://paste.org/44054 6. http://paste.org/44055
