eclips タイプの不一致でコーディング エラーが発生し、オブジェクトを文字列に変換できません。AL に入るすべてのデータは文字列型であり、AL は文字列として宣言されます。
AL を String[] に移動させることができれば、それはより良いでしょう。ここに私のコードがあります:
Object[] Result;
AL.toArray (Result);
String[] news= new String[Result.length];
for (int i1=0;i1<news.length;i1++){
news[i1]=Result[i1]; <=====here is where the error shows up