我正在使用OSGI框架创建两个包。一个用于查找给定矩阵的行列式,另一个用于从用户获取矩阵。我使用knopflerfish框架运行这些bundle。当我为矩阵获取恒定值并运行这些包时,它们正在正常工作。但是当我编写用于获取用户输入的代码并在knopflerfish的jar文件中运行它时,它会在nextInt()方法中给出错误。 请给我解决这个问题。
这是我用于创建bundle的Activator类的代码。我正在创建这个bundle的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)
答案 0 :(得分:0)
作为在激活器中使用System.in
的替代方法,我建议您使用Felix GoGo Shell(这是一个可以部署到Knopflerfish中的捆绑包)。它提供了一个简单的extender-model to add new commands,包括命令完成。