- 论坛徽章:
- 0
|
我用了两种方法调用一个带参数的RPG程序,都失败了.
请前辈大侠指教.拜谢.
以下是程序代码
第一种运行到 if (command1.run(commandString)) 就没反应了
command 的commandString 输入为 CHGLIBL LIBL(WANGZH),执行成功.
command1 的commandString 输入为 CALL WANGZH/NBSM830 PARM('0100004587' '2006/02/16'), 程序就没反应了
第二种运行到 if(pgm.run()==true)就没反应了
parm1的输入为'0100004587', parm2的输入为'2006/02/16'
方法1
package pakage1;
import junit.framework.TestCase;
import java.io.*;
//import java.util.*;
import com.ibm.as400.access.*;
/**
* @author wangzh
*
* TODO 要更改此生成的类型注释的模板,请转至
* 窗口 - 首选项 - Java - 代码样式 - 代码模板
*/
public class DPCtest extends TestCase {
public static void main(String[] args) {
// Created a reader to get input from the user192.168.100.10
BufferedReader inputStream = new BufferedReader(new InputStreamReader(System.in),1);
// Declare variables to hold the system name and the command to run
String systemString = null;
String commandString = null,commandString1=null;
System.out.println( " " );
// Get the system name and the command to run from the user
try
{
System.out.print("System name: ");
systemString = inputStream.readLine();
System.out.print("Command: ");
commandString = inputStream.readLine();
}
catch (Exception e) {};
System.out.println( " " );
// Create an AS400 object. This is the system we send the command to
AS400 as400 = new AS400(systemString,"wangzh","ffffffff");
// Create a command call object specifying the server that will
// recieve the command.
CommandCall command = new CommandCall( as400 );
try
{
// Run the command.
if (command.run(commandString))
{
System.out.print( "Command successful" );
try
{
System.out.println(" ");
System.out.print("Command1: ");
commandString1 = inputStream.readLine();
AS400Text command1=new AS400Text(10);
if (command.run(commandString1))
{
System.out.print( "Command1 successful" );
}
}
catch (Exception e) {};
}
else
System.out.print( "Command failed" );
// If messages were produced from the command, print them
AS400Message[] messagelist = command.getMessageList();
if (messagelist.length > 0)
{
System.out.println( ", messages from the command:" );
System.out.println( " " );
}
for (int i=0; i < messagelist.length; i++)
{
System.out.print ( messagelist.getID() );
System.out.print ( ": " );
System.out.println( messagelist.getText() );
}
}
catch (Exception e)
{
System.out.println( "Command " + command.getCommand() + " did not run" );
}
System.exit(0);
}
}
方法2
package pakage1;
import junit.framework.TestCase;
import java.io.*;
//import java.util.*;
import com.ibm.as400.access.*;
/**
* @author wangzh
*
* TODO 要更改此生成的类型注释的模板,请转至
* 窗口 - 首选项 - Java - 代码样式 - 代码模板
*/
public class DPCtest extends TestCase {
public static void main(String[] args) {
// Created a reader to get input from the user192.168.100.10
BufferedReader inputStream = new BufferedReader(new InputStreamReader(System.in),1);
// Declare variables to hold the system name and the command to run
String systemString = null;
String commandString = null;
System.out.println( " " );
AS400 as400=new AS400("192.168.100.10","wangzh","ffffffff");;
ProgramCall pgm;
String progname="/qsys.lib/wangzh.lib/nbsm830.pgm";
try
{
as400.connectService(AS400.COMMAND);
}
catch(Exception e)
{
System.out.println("连接失败!");
System.exit(0);
}
CommandCall command = new CommandCall(as400);
try
{
System.out.print("Command: ");
commandString=inputStream.readLine();
}
catch(Exception e){}
try
{
if (command.run(commandString))
{
System.out.print( "Command successful" );
}
}
catch(Exception e){}
pgm=new ProgramCall(as400);
ProgramParameter[] parmlist = new ProgramParameter[2];
AS400Text polnum = new AS400Text(12);
AS400Text appdte = new AS400Text(12);
String parm1 = null;
String parm2 = null;
try
{
System.out.print("Parm1: ");
parm1=inputStream.readLine();
}
catch(Exception e){}
System.out.println(" ");
try
{
System.out.print("Parm2: ");
parm2=inputStream.readLine();
}
catch(Exception e){}
parmlist[0] = new ProgramParameter(polnum.toBytes(parm1),10);
parmlist[1] = new ProgramParameter(appdte.toBytes(parm2),10);
try
{
pgm.setProgram(progname,parmlist);
}
catch(Exception e)
{
System.out.println("设置参数失败!");
}
try
{if(pgm.run()==true)
{
System.out.println("远程调用成功!");
}
else
{
System.out.println("远程调用失败!");
}
}
catch(Exception e)
{
System.out.println("远程调用异常!");
e.printStackTrace();
}
}
} |
|