私はhtmlテーブル形式のcsvファイルから生成されたリストを返しています:
<span class="gwt-HTML">
<div id="productList">
nullnullnullnullnull
<table cellspacing="0">
<tbody>
<tr>
<th>Type Name</th>
<th>Class Name</th>
<th>Sub Class Name</th>
<th>Minor Class Name</th>
<th>Country Origin</th>
<th>SKU</th>
等..
奇妙な nullnullnullnullnull が表示されていることに気付きましたか? これは、html がウィジェットに変換された後に発生します。
SimplePanel pnl = new SimplePanel();
HTML res = new HTML(result);
pnl.add(res);
RootPanel.get("tableData").add(pnl);
結果変数は html 文字列です。
<div id="productList">
<table cellspacing="0">
<tbody>
<tr>
<th>Type Name</th>
<th>Class Name</th>
<th>Sub Class Name</th>
<th>Minor Class Name</th>
<th>Country Origin</th>
<th>SKU</th>
...etc
結果の文字列にヌルが含まれていないことを確認しました。なぜこれが起こっているのか誰にも分かりますか?非常に奇妙な...