本人是新手   现在在做的是   用myeclipse中的jsp调用已生成的两个jar包(javabuilder   还有一个matlab程序打包的jar包)   其中要用到MWN array也没有学过  求大神指点

解决方案 »

  1.   

    多种方式:1、把jar包放到web-info下面的lib中,然后在jsp中用jsp标签import导入就可以了。
    2、把jar包放到classpath中,然后在jsp中import导入就可以。
    3、把jar包放到tomcat中的lib中也是可以的,然后在jsp中import导入!
      

  2.   

    最简单的:把jar包放到项目/WebRoot/WEB-INF下面的lib中,然后在jsp中用jsp标签import导入就可以了。
      

  3.   

    现在已经导入了jar包了  调用的时候  总是出问题   小女子实在无奈了
    百度到的都试过了   log里面说是java虚拟机不存在    这是不可能的呀
    # An unexpected error has been detected by Java Runtime Environment:
    #
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d801117, pid=13804, tid=10864
    #
    # Java VM: Java HotSpot(TM) Client VM (10.0-b19 mixed mode windows-x86)
    # Problematic frame:
    # C  [jvm.dll+0x1117]
    #
    # An error report file with more information is saved as:
    # D:\Program Files\Java\workspace\myadd\hs_err_pid13804.log
    #
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    #
    Opening log file:  C:\Users\ADMINI~1\AppData\Local\Temp\java.log.13804
      

  4.   

    你自己机器上装了JDK吗,如果装了就指定自己的JDK吧。
      

  5.   

    JDK装了,怎么指定自己的JDK?