前提・実現したいこと
データクラスから任意の文字列を取得したいと考えております。
できればfor文で{words.length}まで繰り返し処理をして、”text”を配列に格納していき、最終的には文字列として表示させたいと考えております。しかし実装方法が分からず苦戦しております。
発生している問題・エラーメッセージ
var text =result.regions.lines.word.get(0).text
linesが赤字のエラーになっています
エラーメッセージ:Function invocation 'lines(...)' expected
原因は分かっているのですが、解決方法が分かりません。
JSON
{ "language": "ja", "textAngle": 0.0, "orientation": "Up", "regions": [ { "boundingBox": "181,56,1235,2696", "lines": [ { "boundingBox": "560,368,304,2256", "words": [ { "boundingBox": "568,368,296,376", "text": "A" }, { "boundingBox": "592,2448,184,176", "text": "B" } ] }, { "boundingBox": "1001,1518,86,1232", "words": [ { "boundingBox": "1041,1518,35,43", "text": "C" }, { "boundingBox": "1001,2648,33,102", "text": "D" } ] } ] } ], "modelVersion": "2021-04-01" }
データクラス
**Example.java** @Generated("jsonschema2pojo") public class Example { @SerializedName("language") @Expose public String language; @SerializedName("textAngle") @Expose public Float textAngle; @SerializedName("orientation") @Expose public String orientation; @SerializedName("regions") @Expose public List<Region> regions = null; @SerializedName("modelVersion") @Expose public String modelVersion; }
**Line.java** @Generated("jsonschema2pojo") public class Line { @SerializedName("boundingBox") @Expose public String boundingBox; @SerializedName("words") @Expose public List<Word> words = null; }
**Region.java** @Generated("jsonschema2pojo") public class Region { @SerializedName("boundingBox") @Expose public String boundingBox; @SerializedName("lines") @Expose public List<Line> lines = null; }
@Generated("jsonschema2pojo") public class Word { @SerializedName("boundingBox") @Expose public String boundingBox; @SerializedName("text") @Expose public String text; }
該当ソースコード
val result = Gson().fromJson(result, Example::class.java) var text =result.regions.lines.word.get(0).text //このコードに不備があります txt_result.text = text
ご協力よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/02/05 08:33