× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



5 seconds with Google finds this:

https://poi.apache.org/apidocs/dev/org/apache/poi/ss/util/CellReference.html#convertNumToColString-int-


Notice that it says "public static java.lang.String convertNumToColString(int col)"  But you do not have "static" in your prototype.  Please add the static keyword and call it as a static method.


On 9/16/2023 10:10 PM, eric bothes wrote:
Trying to define and use poi convertNumToColString and getting a method error. when i decompile the java class CellReference, i see convertNumToColString defined.

Code
Dcl-PR convertNumToColString like(jString)
         EXTPROC(*JAVA:'org.apache.poi.ss.util.CellReference':' ');
  col int(10) value;
End-PR;

dcl-s colNum int(10);
dcl-s colStr like(jString);

colNum = 1;
colStr = convertNumToColString(ssworkbook:colNum);

Path to poi.jar
/java/poi/poi.jar

Message . . . . :   Java exception received when calling Java method.
Cause . . . . . :   RPG procedure myprogram in program mylib/myprogram
  received Java exception "java.lang.NoSuchMethodError:
org/apache/poi/ss/util/CellReference.convertNumToColString(I)Ljava/lang"
  when calling method "convertNumToColString" with signature
  "(I)Ljava.lang.String;" in class "org.apache.poi.ss.util.CellReference".
Recovery  . . . :   Contact the person responsible for program maintenance to
  determine the cause of the problem.
Technical description . . . . . . . . :   If the exception indicates that the
  Java class was not found, ensure the class for the method is in the class
  path. If the exception indicates that the Java method was not found, check
  the method name and signature. If the signature is not correct, change the


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.