QueryCAT Logo
Search 5,000,000+ questions and answers.

Frequently Asked Questions

How do I run the executable JAR file?

DMAP Team (NRLSSC) - FAQ
Optionally, add -Xmx<#>M to increase megabytes of memory available to Java (i.e., <JRE Path>/bin/java -Xmx512M -jar GIDBClient.jar)

How can we create a executable jar file?

Java Language FAQs
executable jar file is the one with a manifest file specifying which class is to start when user executes it (double clicks it in explorer) or invokes with -jar flag of java ( java -jar test.jar). Assume we have First.class and Second.class to be placed in a jar file test.jar. We want First.class to start execution when user runs test.jar. Create a manifest file with the name test.mf as follows: Main-Class: First Note, we should not mention the .class extesion for the file in Manifest file. See similar questions...

How do I make an executable JAR file?

Class IAQ
Solution: If your program is an applet compressed in a JAR file, there is only one change you need to make. Normally when you run an applet, your html file would have the following: <applet code=TheApplet.class width=200 height=200> </applet> For a JAR file, you simply have to add an additional archive parameter: <applet code=TheApplet.class archive="applets/TheApplet. See similar questions...

Can I run Aprobe on any executable program file?

RootCause/Aprobe FAQ
It is a secure application which a debugger doesn't have authority to attach to. In this case you should get a clear explanatory message. The application does something very strange like replacing some low-level system routines with its own versions that do something different. If you find that using aprobe causes your application to crash, you should try running aprobe without any probes. If it still crashes, it should be reported as a bug to . See similar questions...

back to top What's an executable file?

SmartStamp? FAQs
executable file is a program file your computer can load and run. These files generally end in .exe and can be run directly on your computer. Some firewalls are configured to not accept .exe files and, in this case, you will need to download the WinZip version. The files contained in the WinZip and executable downloads are the same, but the WinZip file has been compressed and you will need WinZip software to uncompress it. If in doubt, download the executable file. See similar questions...

Why can not the executable file be run after its icon being changed?

Change icon in exe, dll, folder, driver and other type execu...
Because you have changed the icon from a small one to a big one, and the executable file is not a standard PE format (There is external data in the back of the executable file). So I don't support your changed icon from a small size to a big one. Some executable files do not support icon tuning (protected EXE): when you run your new patched file, if it does not work correctly, then delete it and just rename the backup copy to the original filename. See similar questions...

How can I run an executable or batch file on the server using ColdFusion?

ColdFusion FAQ
cfexecute enables ColdFusion developers to execute any process on the server machine. <cfexecute name="ApplicationName" arguments="CommandLine Arguments" OUTPUTfile="Output file name" timeout="Timeout interval in seconds"> See similar questions...

PatchFactory: How can I run an executable or open another file after update is finished?

AgenSoft.com & Frequently Asked Questions
To run an executable, you can add several lines to the end of the 'default.iss' script-file according to the example listed below. default.iss' script-file is located in the "<PatchFactory3 Installation Folder>\Scripts" folder. Filename: """{code:GetMyAppPath|MyComponent1}\app. See similar questions...

What is a JAR file?

Java Language FAQs
JAR (Java Archive) file contains a collection of packages and classes. It is used to distribute packages and classes. Jar file is created using JAR.EXE, which is found in BIN directory of JDK. For example the following command creates a jar file with the name srikanth.jar and contains all .class files in the current directory. jar cvf srikanth.jar . To use classes of a jar file one has to keep jar file in CLASSPATH. See similar questions...

What do I do to protect an executable file?

ID Security Suite - Frequently Asked Questions
To start protecting an executable file, click the "Browse for Executable" button and select a file to protect. Then set a password by entering it in both spaces provided in the lower part of the menu. Then press the "Protect File" button. See similar questions...

What is an executable Viewlet file? How do I create it?

FAQs: Qarbon's Survey and Quiz Software
If you choose to create an executable Viewlet file when compiling, ViewletQuiz will combine the Flash stand alone player with your Viewlet .swf file into one single executable (.exe) file. When double clicked, the .exe file will play the Viewlet on computers without the need for a browser or Flash stand alone player. To create an executable Viewlet file, go to the Project Properties screen and select the "Packaging" option. See similar questions...

Is it possible to exclude a package from the generated jar file?

FAQs-1 - Maven User - Codehaus
You can configure maven-compiler-plugin to exclude your unwanted packages or files to be compiled in the first place. But you will not be able to prevent javac to compile those files if they are referenced by other packages within the source tree. To prevent that, you will need to use antrun plugin ( or write your own custom plugin), bind it to compile phase, and remove unwanted classes in ${project.build.directory}/classes. See similar questions...

edit] How do I generate an executable, then use the executable to generate a file?

CMake FAQ - KitwarePublic
You must use GET_TARGET_PROPERTY to obtain the location of the generated executable. Some platforms put executables in separate directories according to their build type, i.e. MSVC typically has subdirectories for "Debug" and "Release" builds. For the DEPENDS part of the command, you can either use DOIT_EXE or just simply use the name of the target. This will ensure that the target doit is built before any target that uses the output from the custom command. See similar questions...

Why is the executable file so large?

Tranglos Software: KeyNote: Frequently asked questions
Mumble. There are three answers to this. One: It's not my fault! Two: Oh well, I could do better. Three: Everyone else is cheating (well, they often are). It's not my fault. Every serious application written using Borland's Visual Component Library - be it a Delphi or a C++ program - is going to be about a megabyte in size, or more. This is part of the price paid for the convenience and reliability that the VCL affords a programmer. See similar questions...

What is Executable File Icons Changer?

Change icon in exe, dll, folder, driver and other type execu...
Executable File Icons Changer is a software tool that allows you by means of only several mouse clicks to replace a lot of icons of separate program with those you do like! See similar questions...

How do I open a Jar file?

Java FAQs
A Jar file has the same format as a zip file. However, WinZip(7.0) does not open Jar files when you double click on the Jar file in the Window Explorer. Instead, you must open WinZip and then either drop the Jar file on WinZip's title bar or you need to use WinZip's File menu. See similar questions...

How do I unsign a jar file?

FAQs
The quickest way to do this is get the WinZip program. Open up the jar file with WinZip. Locate the files in the meta-inf directory and delete all the signature files. The signature files are basically all the files in the meta-inf directory except the manifest.mf file. They will have extentions of .dsa and .sf. See similar questions...

How can i find out which JAR file or Directory from where my class was loaded?

Java Language FAQs
class Test { public static void main (String args[]) { System.out.println("Loaded Test from:" + Test.class.getProtectionDomain().getCodeSource().getLocation()); } } The above code doesn't work because, by default all floating point constants in Java are treated as double, the float variable f cannot take a double value. The remedy is to convert it using type casting ( (float)10.50) or declare variable f as double. See similar questions...

On what platforms can I run PAR? On what platforms will the resulting executable run?

AnnoCPAN - PAR::FAQ
The resulting executable will run on any platforms that supports the binary format of the generating platform. See similar questions...

Explore Other Topics

How can I get the Global Address Book on my BlackBerry?
Is there an annual limit to my out-of-pocket payments?
Do I need a visa to come to India?
How can I embed the video stream in my web page?
Can I install Enviroshake® over my existing shingles?
Is Aluminum Oxide Safe?
How does Menstruation AffectDiabetesControl?
How do I get the scroll wheel on my mouse to work?
Is it better for me to be pre-approved for a mortgage?
What is the difference between a tablet and a caplet?
How does AA help keep members sober?
You also have PC,XBox and PS2 games? Do I have to pay more?
More Questions >>

© Copyright 2007-2012 QueryCAT
About • Webmasters • Contact