我一直在给母亲写一个小程序,我必须根据他们要求她做的工作显示价格清单。由于她需要价格中的所有小数,我在Excel上设置单元格格式为7位小数。问题是调试我的程序,当我读一个有价格的单元格时,它会在数字之后添加几个零,而这些数字实际上没有写在单元格上。我无法理解发生了什么,并且我使用OpenOffice将文件另存为Excel 97/2003文件,以及" listino.xls"。这是我用来获取作品标题和价格的代码:
public Lavorazione[] creaLavorazioni(Lavorazione[] lavorazioni){ //create Work
char[] stringa = new char[8];
double prezzo = 0;
String prezzostringa = "";
for(int righe=1;righe<workbookR.getSheet(0).getRows();righe++){ //until the rows of
//the excel table end
try{
lavorazioni[righe-1].setLavorazione(l.LeggiCella(listino, 0, righe));
stringa = l.LeggiCella(listino, 2, righe).toCharArray();
for(int i=0;i<stringa.length;i++){ //getting number and switching ","
//with "."
if(stringa[i]==',')
stringa[i]='.';
prezzostringa += stringa[i]; //Creating the price string
}
prezzostringa=prezzostringa.substring(0, 8); // deleting extra zeros, just
//in case
prezzo = Double.parseDouble(prezzostringa); //casting to double
lavorazioni[righe-1].setPrezzo(prezzo); //setting in lavorazioni.prezzo
}catch(Exception e){
System.out.println("è successo qualcosa in creaLavorazioni!");
}
prezzostringa=""; //resetting for the next cycle
}
return lavorazioni;
}
班Lavorazione
是由我制作的,它是这样的:
public final class Lavorazione {
private String lavorazione; //name of the work to do
private double prezzo; //price of it
public Lavorazione(String lav, double costo){
this.setLavorazione(lav);
this.setPrezzo(costo);
}
public String getLavorazione() {
return lavorazione;
}
public void setLavorazione(String lavorazione) {
this.lavorazione = lavorazione;
}
public double getPrezzo() {
return prezzo;
}
public void setPrezzo(double prezzo) {
this.prezzo = prezzo;
}
所以它只有工作的名称和相对价格。简而言之,当有&#34; 0,05423&#34;在单元格中,它写入&#34; 0.05423000000000001&#34;。任何人都可以帮我这个吗?使用java.util.Locale是个好主意吗?如果您需要更多信息,请问我。
编辑:我使用的是jxl api。
答案 0 :(得分:0)
我找到了解决方案。问题出在LeggiExcel类中,我在其中执行了此操作:
public String LeggiCella(Sheet foglio, int col, int riga) {
Cell a = foglio.getCell(col, riga);
String contenuto = a.getContents();
if (a.getType() == CellType.NUMBER){
contenuto = Double.toString(LeggiCellaNumerica(a));
}
return contenuto;
}
public double LeggiCellaNumerica(Cell a){
double num = 0;
NumberCell nc = (NumberCell) a;
num = nc.getValue();
return num;
}
因此它会检查CellType
是否为NumberCell
,然后获取值,将其作为double返回。然后我会将它转换为LeggiCella
方法中的字符串并将其作为字符串返回。看起来像在Excel文件中设置单元格格式为7位小数会使它在数字的近似值中变得疯狂,所以它会在结尾处设置8或9个零。我现在已经删除了NumberCell检查,只是获得了将其作为String返回的单元格的值,并且它可以正常工作。谢谢所有帮助我找到解决方案的人。