免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2387 | 回复: 0
打印 上一主题 下一主题

java调用带参数的RPG问题请教 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-02-16 15:09 |只看该作者 |倒序浏览
我用了两种方法调用一个带参数的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();
        }
       
        }
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP