|
Hope someone can help. I am retrieving a as400 database field that is 8 positions packed and if it is not zeros I want to format the field as sting with the slashes. I put the program in debug and look at the variable it is "0" When I make the compare to "0" it comes up as a false. Can anyone tell me why? BigDecimal Wdate = (BigDecimal)keyedRecord.getField("RREXWD"); // Withdrawal Date // reformat the Date String FMTDATE = Wdate.toString(); StringBuffer STGBUFF = new StringBuffer(" "); if(FMTDATE.trim.equals("0")) { } else { STGBUFF.append(FMTDATE.substring(4,6)); STGBUFF.append("/"); STGBUFF.append(FMTDATE.substring(6)); STGBUFF.append("/"); STGBUFF.append(FMTDATE.substring(0,4)); } System.out.println("After String Buffer getReqInfo() method of HTMLSignHandler"); Michael P. Gibbons Manager of Programming & Technical Services MARYWOOD UNIVERSITY 2300 Adams Ave. Scranton, PA 18509 +--- | This is the JAVA/400 Mailing List! | To submit a new message, send your mail to JAVA400-L@midrange.com. | To subscribe to this list send email to JAVA400-L-SUB@midrange.com. | To unsubscribe from this list send email to JAVA400-L-UNSUB@midrange.com. | Questions should be directed to the list owner: joe@zappie.net +---
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.