0

最近、Java ベースのアプリケーションのテストを開始しました。問題は、簡単なステートメント lik; を入れても問題です。

lr.output_message("Hello");

何も起きていません。私はすでにクラスパスとjdkパスを設定しています。コンパイル中にエラーは発生しませんが、実行時には表示されません。

サンプルスクリプト

import lrapi.lr;
import lrapi.web;


public class Actions
{

    public int init() throws Throwable 
    {
        return 0;
    }//end of init


    public int action() throws Throwable 
    {
        lr.start_transaction("trans1");
        System.out.println("Lin 1");
        lr.output_message("Error");
        lr.message("Pulkit");
        lr.end_transaction("trans1",lr.AUTO);
        return 0;
    }//end of action


    public int end() throws Throwable {


        return 0;
    }//end of end
}

...................................

実際にいくつかの研究開発を行うことで、同じコードが 9.52 では機能しますが、11.52 では機能しないので、これはバグですか?? 誰でも私に提案できますか?

4

1 に答える 1