JavaFX 2.0 :: Unable To Load Jar Manifest
Jun 29, 2015
My jar is running from local and when I put it in the network drive, it doesn't run.. shows this error
And it is working if I map my network drive.
Used ant build to generate jar.
this is the error I can see in command prompt
jar is at the following location
path oNetworkDrive oolsdevMyApp.jar
java.io.FileNotFoundException: path oNetworkDrive oolsdev oNetworkDrive oolsdevMyApp.jar (The system cannot find the file specified)
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.<init>(Unknown Source)
at java.util.zip.ZipFile.<init>(Unknown Source)
at java.util.jar.JarFile.<init>(Unknown Source)
at java.util.jar.JarFile.<init>(Unknown Source)
at com.javafx.main.Main.getJarAttributes(Main.java:447)
at com.javafx.main.Main.main(Main.java:829)
I observed that the network drive path is duplicating.
View Replies
ADVERTISEMENT
Nov 21, 2014
I am trying to create a custom tag, but I am getting the error message:
Unable to load tag handler class "com.tutorialspoint.HelloTag" for tag "ex:Hello"
I am following the steps given in the tutorial: [URL] ....
/Users/s.m/Documents/com/tutorialspoint/HelloTag.java
package com.tutorialspoint;
import javax.servlet.jsp.tagext.*;
import javax.servlet.jsp.*;
import java.io.*;
public class HelloTag extends SimpleTagSupport {
[Code] ....
I am running under MAC system. What could be wrong?
View Replies
View Related
Jun 5, 2013
I'm trying to load a class file into Oracle using loadjava and I get the following error:
ORA-29552: verification warning: java.lang.UnsupportedClassVersionError: helloworld (Unsupported major.minor version 51.0)
Presumably this is related to an inconsistency between the jdk that I used to compile helloworld and the Oracle JVM? Or something like that?
My JAVA_HOME is C:Program Files (x86)Javajre7bin
My javac version used to compile the code is javac 1.7.0_15
java -version is "1.7.0_15"
When I do a find on java.exe in the oracle installation directory (I'm running 11.2) I get
J-PC:J >find -name java.exe
./product/11.2.0/dbhome_1/jdk/bin/java.exe
./product/11.2.0/dbhome_1/jdk/jre/bin/java.exe
./product/11.2.0/dbhome_1/jre/1.5.0/bin/java.exe
Finally, the jdbc jar is ojdbc6.jar
Btw the code is just the usual little tester:
import oracle.jdbc.driver.*;
public class helloworld {
public static String hello()
{
return "Hello World";
}
public static String hello(String s)
[Code]...
How can I get this class file loaded?
View Replies
View Related
Apr 1, 2013
I'm writing an enterprise application to familiarize myself with Glassfish 3.1.2 and EJB 3.1. I've created several local, stateless beans, and injected one into a JSF managed bean. The ejb and web modules compile fine, but when I launch the application with Glassfish I get the following startup error and the application does not deploy.
SEVERE: Exception while invoking class org.glassfish.ejb.startup.EjbDeployer prepare method
SEVERE: Exception while invoking class org.glassfish.javaee.full.deployment.EarDeployer prepare method
SEVERE: Exception while preparing the app
SEVERE: Unable to load the EJB module. DeploymentContext does not contain any EJB.
org.glassfish.deployment.common.DeploymentException: Unable to load the EJB module. DeploymentContext does not contain any EJB.
Check the archive to ensure correct packaging for D:DocumentsNetBeansProjectsTestdistgfdeployTestTest-war_war.
If you use EJB component annotations to define the EJB, and an ejb or web deployment descriptor is also used, please make sure that the deployment descriptor references a Java EE 5 or higher version schema, and that the metadata-complete attribute is not set to true, so the component annotations can be processed as expected :
at org.glassfish.javaee.full.deployment.EarDeployer.prepare(EarDeployer.java:166)
at com.sun.enterprise.v3.server.ApplicationLifecycle.prepareModule(ApplicationLifecycle.java:871)
at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:410)
at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:240)
at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:389)
[Code] ......
View Replies
View Related
Jan 29, 2015
I am trying to load a CSS file from a mySql DB table (each row represent a customer that use the application, and each one can set his own CSS file).
How can I convert the Stream / String that I loaded from the Clob column to something that I can use here XXXX
scene().getStylesheets().add( XXXX );
I found alot of examples, but they all talking about files from filesystem, or URLs. My CSS file is in the application memory. I want to prevent the option to write my string as a new file and then read it again. I have no problem with loading the CSS file from database, this part is O.K.
View Replies
View Related
Jan 24, 2015
I am building an application that shows tables with large amounts of data containing columns that should display a thumbnail. However, this thumbnail is supposed to be loaded in the background lazily, when a row becomes visible because it is computationally too expensive to to this when the model data is loaded and typically not necessary to retrieve the thumbnail for all data that is in the table.
I have done the exact same thing in the past in a Swing application by doing this:
Whenever the model has changed or the vertical scrollbar has moved:
- Render a placeholder image in the custom cell renderer for this JTable if no image is available in the model object representing the corresponding row
- Compute the visible rows by using getVisibleRect and rowAtPoint methods in JTable
- Start a background thread that retrieves the image for the given rows and sets the resulting BufferedImage in a custom Model Object that was used in the TableModel (if not already there because of an earlier run)
- Fire a corresponding model change event in the EDT whenever an image has been retrieved in the background thread so the row is rendered again
Btw. the field in the model class holding the BufferedImage was a weak reference in this case so the memory can be reclaimed as needed by the application.
What is the best way to achieve this behaviour using a JFX TableView? I have so far failed to find anything in the API to retrieve the visible items/rows. Is there a completely different approach available/required that uses the Cell API? I fail to see it so far.
View Replies
View Related
Jun 8, 2014
I am having a small JavaFX program where I try to set a value to TextField. Below is the part of FXML file and highlighted is the Textfield ....
fxml file
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="185.0" prefWidth="598.0">
<children>
<TextField fx:id="actiontarget" editable="true" layoutX="146.0" layoutY="73.0" prefWidth="198.0" text="" />
[Code] ...
I want to display a string value to that text field.
So, I am using that fxid (actiontarget)
But actiontarget.setText (pathofFile) is not working .
Nothing displays and no value sets for the Text field.
How can I set value in that text field through above code.
View Replies
View Related
Jun 28, 2014
Here is my problem:
Javafx launcher error and beneath this it says
unable to invoke main method
How do I fix this I have a windows 8 hp laptop 64 bit...
View Replies
View Related
Apr 26, 2015
I am creating a .jar for a game I made. I'm not using any dev tools, just a DOS console call to java: %~dp0....javajdkinjar.exe -cfmv TheSwarm.jar manifest.txt *
My manifext.txt contains:
Main-Class: Game
But when I compile the jar, its manifest contains:
Manifest-Version: 1.0
Created-By: 1.7.0_01 (Oracle Corporation)
And I get an error about it not finding the main class. Shouldn't my Main-Class setting be added to the jar? I can manually rename it to .zip and edit the Manifest.MF but that is a huge pain when I'm testing the .jar file and regenerating it often.
View Replies
View Related
Nov 21, 2013
I am trying to create executable jar file and I have test.mf file located in the dir from where jar cmd(JavaTest) is executed and also in dir which contains class files (jTest).
C:Users
m2tDesktopJavaTest>jar cvfm JarTest4.jar test.mf jTest
java.io.FileNotFoundException: test.mf (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:120)
at java.io.FileInputStream.<init>(FileInputStream.java:79)
at sun.tools.jar.Main.run(Main.java:150)
[Code] .....
So how can Icreate manifest file and where shall I put it ?
View Replies
View Related
Apr 14, 2014
I am trying to run a project and i am getting different errors, I know the code is working because i have seen it running, but now i cant even get the app to load up. sometime I get a AndroidManifest cannot be found error and sometimes i get a error like
[2014-04-14 17:28:31 - DatabasePrototype5] Failed to install DatabasePrototype5.apk on device 'emulator-5554!
[2014-04-14 17:28:31 - DatabasePrototype5] (null)
[2014-04-14 17:28:32 - DatabasePrototype5] Launch canceled!
my AndroidManifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.databaseprototype5"
android:versionCode="1"
android:versionName="1.0" >
[Code] ....
View Replies
View Related
Jun 5, 2014
I try to bind the text-property of a selected cell of a TreeView to a label. So if the user click on a cell in the treeview the label should show the cell text. Now I am quite confused about the options I got to do so. Should I use label.textProperty().bind( ... ??? ... ) The treeview.onMouseClicked()property? or something different?
View Replies
View Related
Jul 1, 2014
I'm trying to add a CLASSPATH to a manifest file linking (not sure If that's the right word) to an sqljdbc4.jar file.
If I copy the file Into my root folder and use CLASSPATH: sqljdbc4.jar It works fine.
Class-Path: sqljdbc4.jar
Main-Class: com.ncntech.go
If I try CLASSPATH: C:Program FilesMicrosoft JDBC Driver 4.0 for SQL Serversqljdbc_4.0enusqljdbc4.jar I receive a "Could not find or load main class" error.
Class-Path: C:Program FilesMicrosoft JDBC Driver 4.0 for SQL Serversqljdbc_4.0enusqljdbc4.jar
Main-Class: com.ncntech.go
Is the syntax correct for specifying a directory path ?
View Replies
View Related
Jan 11, 2014
So the user is on a website and I want them to go to another site using the same browser and tab.Can this be done in java? And yes the java program is running on the browser .
View Replies
View Related
Sep 10, 2014
I'am trying to finish my first Java Game with the slick2D library. I had it all working in eclipse but when i was about to make a jar file of it i did realize that i had to use class loader to load my png - SpriteSheets. But now to the problem. My ResourceLoader Class looks like this:
public static InputStream load(String path){
InputStream input = MyResourceLoader.class.getResourceAsStream(path);
if(input==null){
input = MyResourceLoader.class.getResourceAsStream("/"+path);
}
return input;
}
My init-Method in the BasicGame class, where i try to load my png-files looks like this:
public void init(GameContainer arg0) throws SlickException {
InputStream inputStream1 = MyResourceLoader.load("images/piratR.png");
sprite1 = new SpriteSheet("",inputStream1,32,32);
InputStream inputStream2 = MyResourceLoader.load("images/monkey.png");
sprite2 = new SpriteSheet("",inputStream2,32,32);
animation1 = new Animation(sprite1,200);
animation2 = new Animation(sprite2,250);
}
And that works fine for loading the FIRST png-file(eg piratR.png), but whenever i try to load another file it just loads the first one again. So in this case sprite1 and sprite2 looks the same though there are different images.
When i switch the "Load order" and Load sprite2 before sprite1 both animations looks different, so I'm sure that i have two different pictures and its always the one that i load first that will get loaded to all the other SpriteSheets.
View Replies
View Related
Feb 8, 2014
I can not load my jar file and it is telling me it can not find the main and I thought I had the right files in the right spots. Do I need the .class of my main file for it to make the jar file. I do not understand If I need to make a .jar out of the main then add all the other files to create the jar.
added manifest
adding: Board.class(in = 2431) (out= 1371)(deflated 43%)
adding: Cell.class(in = 1702) (out= 959)(deflated 43%)
adding: Mark.class(in = 1195) (out= 673)(deflated 43%)
adding: Outcome.class(in = 960) (out= 538)(deflated 43%)
adding: Player.class(in = 832) (out= 472)(deflated 43%)
TacToeGUIGame.jar
Error: Could not find or load main class TicTacToeGUIGame
View Replies
View Related
Mar 13, 2014
Within my program I allow users to write their own code to be executed. I then save that code in a .java file and then compile. This gives me a .java file and a .class file within the same package in the src folder. However, the compilation process also creates a .class file in the build folder. When the user edits their code and then re-runs it, the .class file in the build folder does not get updated with the new data, but the .class in the src folder does.
What I want to do is to execute the .class file in the src folder and not the build folder. So far I have the following method, but that somehow refers to the .class file in the build folder:
public void runMethod(String packageFilePath, String className){
try{
URI fileURI = new URI("file:/src/uk/learningAid/UserInputs/");
URL url = fileURI.toURL();
URL[] urls = new URL[]{url};
[code]....
View Replies
View Related
Jul 21, 2014
I am using JPF controllers. Already, i am loading a properties file in the controller
(using annotations @Jpf.Controller(messageBundles = { @Jpf.Message Bundle(bundlePath = "validation.validator.Messages") },).
I have a problem. Depending on one of the request variables, i need to load different properties files. All these property files have same keys, but with different messages. I need to take the user to different sites(though internally, the backend logic remains same...Look and feel of the front end along with messages to be shown change to make the users feel they are being directed to a different site).
I am thinking of loading the properties file from the JSP when the user logs in first time from login page so that these properties are available until the session expires & not read the properties file in Controller.
View Replies
View Related
Jun 17, 2014
When I try to create a WebBrowser object
WebBrowser browser = new WebBrowser ();
I get this error
Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError: Can't load library: C:UsersChris.m2
epositoryorgjdesktopjdicjdic .9.5windowsamd64jdic.dll
The problem is that the path does not exists after windowsamd64jdic.dll
So i cant put the dll file there..its the first time i use dll files ....
View Replies
View Related
May 29, 2014
I'm developing an Applet that print a bar code using Jpos API. I need some jars and two configuration file. I've added jars to the classpath and configuration files in src directory. In Eclipse everything works fine.
DefaultProperties prop = new DefaultProperties();
prop.loadJposProperties();
SimpleXmlRegPopulator xmlReg = new SimpleXmlRegPopulator();
xmlReg.load(wincor.jpos17.THxxx.xml");
Everything works fine in Eclispe but I can't find property files when i call the applet from a web page. So I've checked the JavaPos sources and I've paste the loadJposProperties() and xmlReg.load("wincor.jpos17.THxxx.xml") content in my source code:
InputStream isD = prop.getClass().getClassLoader().getResourceAsStream(prop.JPOS_PROPERTIES_FILENAME); // (1) content of loadProperties
if (isD != null){
System.out.println("jpos/res/jpos.properties found");
[Code] ...
The same method is used to found wincor.jpos17.THxxx.xml. So when I call applet form the browser I get INPUT STREAM FROM PROPERTIES OK!! from (1) and jpos/res/jpos.properties not found from (2).
So getClass().getClassLoader().getResourceAsStream works if i write it directly in my code, but doesn't work if i call a jar method.
View Replies
View Related
Jul 23, 2014
How to load an image to a swing application?? I want to load it to myframe(JFrame)..
View Replies
View Related
Sep 23, 2014
I have permanently set the path of bin of JDK 1.6 in the environment variables of my system. I am able to compile any of my java programs successfully. But when I give command to run the program I am getting an error "could not find or load main class".
When I write the command "set classpath=.;" program runs successfully. I want to know whether I have to set this classpath everytime I run a new progaram. Is there any permanent way to set classpath ?
View Replies
View Related
May 9, 2014
I have an issue about loading images from css using a composite component. The folder structure is:
resources
resources -> css -> componentname
resources -> images - > componentname
resources -> WEB-INF
If i write in the css something like
border-image: url(resources/images/componentname/image.png) !important;
or
border-image: url(images/componentname/image.png) !important;
i have a 404 error and i can't see the image.
I able to load the image only if i write path with context-root:
border-image: url(/<CONTEXTROOT>/resources/images/componentname/image.png) !important;
but i can't write explicit context root in css files!!
So, i tried to use resource EL variable:
border-image: url(#{resource[image/componentname/image.png]}) !important;
but this last way render
border-image: url("/<CONTEXTROOT>/javax.faces.resource/images/componentname/image.png.faces.faces") !important;
and i not able to replicate the right way written above.
The project is developed with RSA9 and WebSphere Portal 8, but if i try to execute it in NetBeans (no portal) it run correctly!
View Replies
View Related
Oct 10, 2014
I want to disable one of the JMenuItem on load itself but when i tried with following code it is disabling after I selected the JMenuitem.
what additional changes are needed to make it work accordingly.
this.onOffItem = new JMenuItem("Filter");
this.onOffItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
applyTruthFlag(currentBTE.isTruthFlag());
}
});
this.menuFilter.add(this.onOffItem);
private void applyTruthFlag(boolean truthAuswertung) {
this.onOffItem.setEnabled(truthAuswertung);
//this.onOffItem.repaint();
}
View Replies
View Related
Apr 17, 2015
I am looking for a way to tidy up my setup at the beginning of my java project.
piece[0].picture = loadImage("Piece1.png");
piece[1].picture = loadImage("Piece2.png");
piece[2].picture = loadImage("Piece3.png");
piece[3].picture = loadImage("Piece4.png");
piece[4].picture = loadImage("Piece5.png");
piece[5].picture = loadImage("Piece6.png");
[code]...
I though a for loop might work but im not sure how id get it to use the file names above
for(int l=0; l<=76; l++){
piece[l].picture = loadImage("part unsure about")
}
View Replies
View Related
Feb 3, 2015
Okay I am having a problem I wrote some code to transfer a file from my server when requested by the client. The problem is that when the file which is requested is transferred the file cannot be open in its respected file launcher when clicked. The File launcher throws back this msg "My Issue It request the File but after the File is requested and stored on the Client Machine when I Hit the File to be Launch adobe says the file "Adobe could not open the File for it is not supported file type or because the file as been damage"
So i have two pair sets of code for original coded by me. Original code i had first Server
import java.io.*;
import java.net.*;
public class SimpleFileServer {
public final static String FILE_TO_SEND = "c:/Users/Acer/Downloads/COAFlags.pdf"; // you may change this
public static void main(String args[]) {
[code]....
View Replies
View Related