次のタスクであなたの提案とガイダンスが必要です。私は、ECC200データマトリックスバーコードの画像ファイルを読み取り、その内容を読み取り、デコードされたメッセージを標準出力に書き込むコマンドラインユーティリティに付属するlibdmtxを使用しています。LinuxプラットフォームのJavaプログラムでこのコマンドラインユーティリティを使用したいと思います。私はubuntulinuxを使用しています。Linuxマシンにlibdmtxをインストールしました。コマンドを呼び出すと
dmtxread -n /home/admin/ab.tif
Linuxターミナルでは、画像内のバーコードのデコードされた値をすぐに提供します。
Javaプログラムを使用してこのコマンドを呼び出すと、コマンドの実行時にコードstuksが実行され、dotnが出力を返します。プログラムが処理中であるか、ハングしているようです。
以下は、次のコマンドを呼び出す私のJavaコードです
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
public class Classtest {
public static void getCodes(){
try
{
Process p;
String command[]=new String[3];
command[0]="dmtxread";
command[1]="-n";
command[2]="/home/admin/ab.tif";
System.out.println("Command : "+command[0]+command[1]+command[2]);
p=Runtime.getRuntime().exec(command); //I think hangs over here.
BufferedReader reader=new BufferedReader(new InputStreamReader(p.getErrorStream()));
String line=reader.readLine();
if(line==null){
reader=new BufferedReader(new InputStreamReader(p.getInputStream()));
line=reader.readLine();
System.out.print("Decoded :- "+line);
}else{
System.out.print("Error :- "+line);
}
System.out.println(p.waitFor());
}catch(IOException e1) {
e1.getMessage();
e1.printStackTrace();
}catch(InterruptedException e2) {
e2.getMessage();
e2.printStackTrace();
}
}
public static void main(String args[]){
getCodes();
}
}
私のコードがどこで間違っているのか友達に教えてください。
私は次の記事を参照しましたが、助けを得ることができません
http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html?page=1
友達を案内してください!ありがとうございました!
これは、ProcessBuilderクラスを使用した新しいコードです。このコードも上記のコードと同じ出力を提供します。つまり、Process process = pb.start();の行でハングします。
public class Test {
public static void main(final String[] args) throws IOException, InterruptedException {
//Build command
List<String> commands = new ArrayList<String>();
commands.add("dmtxread");
commands.add("-n");
commands.add("/home/admin/ab.tif");
System.out.println(commands);
//Run macro on target
ProcessBuilder pb = new ProcessBuilder(commands);
pb.redirectErrorStream(true);
Process process = pb.start();
//Read output
StringBuilder out = new StringBuilder();
BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = null, previous = null;
while ((line = br.readLine()) != null){
System.out.println(line);
}
//Check result
if (process.waitFor() == 0)
System.out.println("Success!");
System.exit(0);
//Abnormal termination: Log command parameters and output and throw ExecutionException
System.err.println(commands);
System.err.println(out.toString());
System.exit(1);
}
}
この問題を解決するために私を導いてください。ありがとうございます!