Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jxl Excel シートから行全体を削除するにはどうすればよいですか? 行ごとの内容を見つけることができます。
私はこのリンクを見つけましたが、私の場合、jxlシートではなくjxlシートしかありませんWritableSheet
WritableSheet
-アミット
for (int i = endLine -1 ; i >= startLine -1 ; i--) { wSheet.removeRow(i);}
この行が削除されると、JXL は後続のすべての行を昇格させることに注意してください。そのため、別の削除を回避するために、行を後方に削除してみてください。