次のようなJava配列があります。
String[] arr = new String[] {"123","doc","projectReport.doc"};
私の意見では、アクセスする自然な方法は次のとおりです。
#set($att_id = $arr[0])
#set($att_type = $arr[1])
#set($att_name = $arr[2])
しかし、それは機能していません。私はこの回避策を持ってきました。しかし、このような簡単な作業にはコードが多すぎます。
#set($counter = 0)
#foreach($el in $arr)
#if($counter==0)
#set($att_id = $el)
#elseif($counter==1)
#set($att_type = $el)
#elseif($counter==2)
#set($att_name = $el)
#end
#set($counter = $counter + 1)
#end
他に方法はありますか?