アセット フォルダーから XML ファイルを解析して、データをデータベースにダンプしています。後でこれを取得して、テキスト ビューに表示することができます。しかし、解析中に一部のデータが失われます。つまり、解析前に XML タグ内に 50 語程度含まれていた場合、データベースで解析後にそれらのすべてを見つけることができません。
例:私はこの行を解析しています:
<about>Skandagiri also known as kalavara durga, is an ancient mountain fortess located approximately 70km from Banglore city and 3 km from Chikkaballapur in the Indian State of Karnataka.It is off Bellary road(NH 7, Hyderabad to Bangalore Highway) and overlooks Nandi Hills, Mudddenahalli and Kanive narayanapura.The peak is at an altitude of about 1350 meters</about>
私のデータベースで解析した後:
at an altitude of about 1350
私は次のように解析された値を保持するために文字列を使用しています:
if (element.equalsIgnoreCase("about")){
String str=parsedValue;
}