我正在使用 OSGI 框架创建两个包。一个用于查找给定矩阵的行列式,另一个用于从 user 获取矩阵。我正在使用 knopflerfish 框架运行这些捆绑包。当我为矩阵取恒定值并运行这些捆绑包时,它们工作正常。但是,当我编写代码以获取用户输入并在 knopflerfish 的 jar 文件中运行它时,它会在 nextInt() 方法中给出错误。请给我这个问题的解决方案。
这是我用来创建包的 Activator 类的代码。我正在创建这个包的 jar 文件并在 knopflerfish 中运行它。它在 nextInt() 方法中显示错误。我无法获得用户输入。如果我将这个程序作为 java 应用程序独立运行,它可以工作,但在 knopflerfish 框架中它不能工作
package matrixuse;
import java.util.Scanner;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.Constants;
import org.osgi.framework.ServiceReference;
import matrixCal.*;
public class Activator implements BundleActivator {
public static BundleContext bc = null;
public void start(BundleContext bc) throws Exception {
System.out.println(bc.getBundle().getHeaders().get(
Constants.BUNDLE_NAME)+ " starting...");
Activator.bc = bc;
ServiceReference reference = bc.getServiceReference
(MatrixCal.class.getName());
MatrixCal service = (MatrixCal)bc.getService(reference);
int rows, cols;
MatrixInput m1=new MatrixInput();
Scanner input = new Scanner(System.in);
System.out.print("Enter number of rows: ");
rows = input.nextInt();
System.out.print("Enter number of columns: ");
cols = input.nextInt();
int array[][] = new int[rows][cols];
System.out.println("Enter elements for Matrix");
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
array[i][j] = input.nextInt();
}
}
int result = service.determinant(array,array.length);
System.out.println("Calculated Determinant is :"+ result);
bc.ungetService(reference);
}
public void stop(BundleContext bc) throws Exception {
Activator.bc = null;
}
}
例外是
java.util.NoSuchElementException
at java.util.Scanner.throwFor(Unknown Source)
at java.util.Scanner.next(Unknown Source)
at java.util.Scanner.nextInt(Unknown Source)
at java.util.Scanner.nextInt(Unknown Source)
at matrixuse.Activator.start(Activator.java:24)
at org.knopflerfish.framework.BundleImpl.start0(BundleImpl.java:356)
at org.knopflerfish.framework.BundleThread.run(BundleThread.java:107)