how to call javaBridge Main from java application

218 Views Asked by At

i have question about this

this is my main class this is mycode

 import dxtr.mtapi.mt4.data.QuoteClient;
    import php.java.bridge.JavaBridge;
     public class Main {
        
            public static void main(String[] args) throws IOException {
                QuoteClient qc = new QuoteClient(12342, "xasd", "localhost", 9900);
                JavaBridge.main(args);
            }
        }

error when i run

Exception in thread "main" java.lang.NoClassDefFoundError: php/java/bridge/JavaBridge
    at dxtr.main.Main.main(Main.java:12)
Caused by: java.lang.ClassNotFoundException: php.java.bridge.JavaBridge
    at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:355)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
    ... 1 more

the JavaBridge are different jar. so i add from local like this one here my pom. why my code error at there ?

install
<plugins>
    <plugin>
      <!-- Build an executable JAR -->
       <artifactId>maven-assembly-plugin</artifactId>
      <configuration>
        <archive>
            <manifestEntries>
                <Build-Jdk>${jdk.version}</Build-Jdk>
                <Implementation-Title>${project.name}</Implementation-Title>
                <Implementation-Version>${project.version}</Implementation-Version>
                <Specification-Title>${project.name} Library</Specification-Title>
                <Specification-Version>${project.version}</Specification-Version>
                <Class-Path>libs/JavaBridge-1.0.0.jar</Class-Path>
            </manifestEntries>
          <manifest>
            <addClasspath>true</addClasspath>
            <classpathPrefix>lib/</classpathPrefix>
            <mainClass>dxtr.mtapi.mt4.main.Main</mainClass>
          </manifest>
        </archive>
          <descriptorRefs>
                  <descriptorRef>jar-with-dependencies</descriptorRef>
               </descriptorRefs>
            </configuration>
            <executions>
               <execution>
                  <id>make-my-jar-with-dependencies</id>
                  <phase>package</phase>
                  <goals>
                     <goal>single</goal>
                  </goals>
               </execution>
            </executions>
    </plugin>
  </plugins>

i have try using from this here my pom from example from here https://stackoverflow.com/questions/2229757/maven-add-a-dependency-to-a-jar-by-relative-path i have update my pom like that. but i still cannot run javaBridge in my code. how to run java bridge.jar from my code ? here the picture when i have add to my code here the screenshot of javabridge

so how to fix the problem ? it is i must add the code or something like what ?

1: [enter image description here

i also have try using this

java -cp JavaBridge.jar:build Dxtr.main.Main

but i got error like : Error: Could not find or load main class Dxtr.main.Main

so how to fix this problem when try to run JavaBridge.main

0

There are 0 best solutions below