Hi,I have a set of generated Javadocs files in HTML format.. however, the source (.java files) is lost. Is it possible to generate the structures of .java classes from these HTMLs?
Below is an error that I am getting with a menu application. This application loads a menu from an internal website that is on our intranet. I am not really familiar with either MAC OS X or what this error is actually telling me. I would appreciate any feedback on this issue.This is loading ...
Hi,I work with the Swing. I have a proxy, and all my ports are not opened.So, If I try with all my ports opened -> everything is good.Otherwise I have this error.Which port is used by the getInputStream method?Do I am able to pass a port in parameter to change the default used?If not where ...
747 byte By
hmaya74a at 2007-9-28 18:04:10
Hi guys,Im having the problem as shown below whenever I run javac.-JAVAC caused an exception e06d7363H in module MSVCRT.DLL at 0167:7800adef.Registers:EAX=0063e7b0 CS=0167 EIP=7800adef EFLGS=00000206EBX=ff02000f SS=016f ESP=0063e794 EBP=0063e7bcECX=00000000 DS=016f ESI=78033e80 ...
I have WindowsXP with Service Pack 1 and i just installed the newest Java2 Standart Edition but when I try to load ANY Java appled I get a "Loading Java Applet Failed..." message at the bottom left of IE6.I reinstalled Java,I even tried to install Java1.4(with which it works normally) ,but it ...
class Runme{public static void main(String a[]){Object error= new Error();Object runtimeexception= new RunTimeException();System.out.println( (error.instanceOf Exception+",");System.out.println( (runtimeexception instanceOf ...
513 byte By
jayizaa at 2007-9-28 18:19:00
i take the whole of the source code of this website : http://www.webdevelopersjournal.com/articles/logon/xml_jsp_logon.html.Im using Tomcat and xml database. But when i compile it shows the error : "package.javax.servlet does not exist.import javax.servlet. AND package.javax.servlet.http does ...
How can I give a single javadoc command so as to generate the documentation for all the classes in a jar file
I am not a professional it guy just a user, I am using IE 6 and go into a secured business website and connect to an application that uses IBM's Host on Demand. Yesturday after numerous fail attempts to start what I think is a Cached, I was getting the error that I needed a JVM greater then ...
289 byte By
jshanaba at 2007-9-28 18:27:53
I tried using the built-in CVS client with my CVS Pserver in my local network. I imported then cleared ou thte directory the checked it out. All seemed good until I tried to compile and get the above error. Anyone out there using the CVS client, that can help me? pleasepleaseplease
581 byte By
jayizaa at 2007-9-28 18:29:11
I have taken the whole source code from http://www.webdevelopersjournal.com/articles/logon/xml_jsp_logon.html.Im using Tomcat and xml database. I have installed j2sdk1.4.1_02 and Tomcat 4.1. But when I tried to compile the logon.java, i receive errors: "package javax.servlet does not exist; ...
5714 byte By
owsa at 2007-9-28 18:31:39
Hi, this is my program and it keeps having the error: Exception in thread "main" java.lang.NoSuchMethodError:mainHow do i solve this error?import java.lang.*;public class FwdReduct {public void Input(String args[]){//int n = 3;double [] x={0};double [][] A = {{0,2,3},{2,4,4},{3,1,0}};double[] b ...
994 byte By
Zede77a at 2007-9-28 18:32:19
Hi,i need to know how to put a little XML example file in a comment. This is what i have : * to be consulted. Next you can see an example of a configuration file :/** *<P> * blablablablalbablablabla * * * * * <?xml version="1.0" encoding="utf-8" ?> * <!-- Comments --> * ...
1601 byte By
oathamma at 2007-9-28 18:32:52
Hi,I worote a Doclet a while back using 1.3 which extends Standard this all worked fine but when building and running against version 1.4 I get the following error:javadoc: In doclet class com.assethouse.tools.doclets.standard.AssetHouseDoclet, method optionLength has thrown an ...
2082 byte By
jayizaa at 2007-9-28 18:35:30
have already compile logon.java but there is still error.. Why?The errors are :**********************************************************************org.apache.jasper.JasperException: Unable to compile class for JSPAn error occurred at line: -1 in the jsp file: nullGenerated servlet ...
223 byte By
Keiphusa at 2007-9-28 18:38:29
Whenever there is an applet on a website, and I view it in either IE or netscape, it always crashes the browser. I have downloaded the latest VM, so this isn't the problem. Any help would be great, thanks. :)
Hey guys, I have this line of code in my program, but its giving me an error.here is the code:if (!(currentChar == " "))and here is the error:WordReader.java:21: operator == cannot be applied to char,java.lang.Stringif (!(currentChar == " "))WordReader is the name, currentChar is a char ...
1275 byte By
jayizaa at 2007-9-28 18:44:16
I tried putting my folder correctly and thanks for all ur help...but i dono wtaz wrong with dis problem?It shows :org.apache.jasper.JasperException: Unable to compile class for JSPAn error occurred at line: -1 in the jsp file: nullGenerated servlet error:[javac] Since fork is true, ignoring ...
I'm trying to use the following custom tag:-tag com.me.Test.testTag:f:"My Test Tag"This works fine when sent straight to the command line, but if I put it in an argument file (@argfile) along with the rest of my command, I get the following error:javadoc: Illegal package name: "My Test Tag"Any ...
I have a modified version of the standard doclet from 1.3.1. I'm trying to transfer the functionality from this doclet to a subclass of the 1.4.1 standard doclet. My modified Standard.java contains the following method:public static ConfigurationExcluderDoclet configuration() {if ...
I have a question in regards to Socket Errors.. Specially if I am connecting to an IP or PORT that is not valid. I tried using setSoTimeout on a socket... and I also tried implementing another class to handle timouts....Socket s = SocketOpener.openSocket (ConnectIP, PortNumber, ConnTimeout); ...
Hi,I have 3 sets of javadocs generated corresponding to 3 subsystems. All the packages that are part of these doc share a common initial package name. That is, all the 3 sets of javadocs have got package-names starting with com.MyCompay.MyMainSystem (the actual packages are ...
389 byte By
zumbruna at 2007-9-28 18:58:22
Don't know nothing about this stuff and son is away at collage. But every time I try to play a game this shows up on my desktop in notepad right after it crashes in the gameroomAn unexpected exception has been detected in native code outside the VM.Unexpected Signal : ...
Hello. I've been practicing with input/output and I'm still kinda new to this. I made an application that saves text to a file and can retrieve text from a file. There are two methods in my app, saveText() and getText() that do the file handling. I get the following error when I compile my ...
Hey guys, I'm new to programing and I can't get these curly brackets in ther right places for my If Statements.Help much appreciatedwhile( number1 != 0) {if ( number1 > number3) {// promt and read number 2firstNumber = JOptionPane.showInputDialog( "Enter Second integer" );//subtract 1 from ...
Could anyone tell me where I could find documentation on compiler error messages. I'm just learning JAVA and when I get compiler error messages I don't know how to resolve them. I'll use Oracle as an example of what I'm looking for. Oracle has specific documents,(actually Large Volumes) ...
Can someone help me Debug my program please. I am new to programming and am having a few problems.Thanks Ryan--//Project Comeimport javax.swing.JOptionPane; // program uses JOptionPanepublic class Come {// main method begins execution of Java applicationpublic static void main( String args[] ...
Hi All,I've been facing a very wierd problem.I have two classes, A & B under the same package XYZ.A has a method, a(); and B has a method b(), which calls a().A is a singleton class.What's wierd is that for some unknown reason I can't get to the current instance of A, from B's b() and ...
461 byte By
jayizaa at 2007-9-28 19:26:28
What does it mean by -package org.apache.jasper.runtime does not existimport org.apache.jasper.runtime.*;-package org.dom4j does not existimport org.dom4j.Document;-package org.dom4j does not existimport org.dom4j.io.Element;-package org.dom4j.io.does not existimport ...
i have winXP pro and i have classes which i want to use in my program so that i set classpath c:\packages in system environment in winXP prowhen i compile, everything is fine but i can't run the programany help is really appreciatedthank you very much and hope to hear from ...
Hi. I'm having trouble accessing a file that I know is there. The file is created by the server and sent to this client and I need the file for further processing. I tested to see if the file existed but it came back false. At first I thought it was because the streams weren't closed but I ...
4486 byte By
ehsanaa at 2007-9-28 19:31:42
heloothis is code for My jframei put filemenue but there is problem when i click on menue drop menu is not visible but menue item do work (if u now where the items are )if you have no idea then is it possible to create 3 different menue and ask action performed to look at their event instead of ...
I know that a Doclet automatically receives an instance of RootDocin the start() method. However, I'd like to write a non-Docletclass which processes a RootDoc object. Is there any way to geta RootDoc object outside the context of a Doclet?I imagine javadoc internally builds up the RootDoc and ...
319 byte By
Mr_Xiaa at 2007-9-28 19:38:25
everytime i use javac in DOS ( in textpad it works fine! ), just typing javac -? or trying to compile something results in this error : Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/tools/javac/MainI tried reinstalling 1.4.2, but it is still the same, anyone know a solution ...
424 byte By
mcahna at 2007-9-28 19:47:07
I am running SE Java and when I start windows xp and log on as a user I get a java virtual machine launcher error that says "could not find the main class program will exit. I hit ok and the error message disappears and then the computer seems to operate ok. It happens every time windows is ...
6775 byte By
jayizaa at 2007-9-28 19:50:58
Im doin jsp using Tomcat4.1 and j2sdk1.4.1_02.. When i try to add a record, it will display this error: org.apache.jasper.JasperException: Adding text to an XML document must not be nullat org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)at ...
When I javadoc a combination of packages and selected classes in otherpackages, as injavadoc ... com.whoever.package1 com.whoever.package2.SomeClass.java com.whoever.package2.AnotherClass.javamethod arguments in package1 that are of classes also in package1are rendered as hyperlinks, but ...
I am trying to grant read and write permissions to a folder on my server. In the java.policy file I have:grant { permission java.io.FilePermission "C://JavaWebServer2.0//public_html//uploadfile//*", "read,write";};This won't work, I get the exception java.io.filepermission \uploadfile readDoes ...
852 byte By
eethiea at 2007-9-28 20:10:01
when i try to load the applets, it sometimes boots me completely out of the browser..other times it just freezes the applets..and i cant close them afterwards.....i have windows 98, and i uploaded the newest version of IE and the java software......and plug in.......on rare occasions it runs ...
I'm trying to insert a photo into an applet with this code:JLabel photo;photo = new JLabel(new ImageIcon("c:/hotelfiles1/foto.jpg"),JLabel.CENTER);My problem is that when I run the applet appear this exception:java.security.AccessControlException: access denied (java.io.FilePermission ...
when i try create Socket my JRE hang's up...i tried to do sth. with my system and i realised, that when i set up iptables input stream to accept, everything with Socket is ok, but i don't want to loose my firewall :) so, where is a bug?anyone can help me ?i have Slackware 9.0 and JSDK ...
759 byte By
eethiea at 2007-9-28 20:16:53
i got a new error message yesterday....it says applets in this html page require a version of java different from the one the browser is currently using: in order to run the applets in the html page, a new browser session is required..press yes to start a new browser session....... and in the ...
Hi,Ok I downloaded and installed J2SE, and followed the instructions on the site up to the "HelloWorldApp" section. I copy and pasted the code into a text document and saved it as HelloWorldApp.java, and used javac from the directory where the file was saved. My comp tries to compile it but I ...
Hi,I am trying to use the URLConnection class's getFileNameMap() method; during compilation of the applet, there is no error, but when I deploy the applet, I get a java.lang.NoSuchMethodError.The exact error details are shown below:java.lang.NoSuchMethodError: java/net/URLConnection: method ...
908 byte By
fais79a at 2007-9-28 20:21:44
Hi Guys,Below is the code I am using for validation of the TextInput in my program. Thing is there are many TextFields so I can't link each one like below. Any1 knows how I can convert this into a function so that I could just simply send the name of the component to this function?//Listener ...
I got project and under that lots of modules are there. I want to generate JAVADOC for all of them remaing on the top level file folder. I dont want to go in each folder and generate the JAVADOC for files, there are 1000s of java files. Is there any way to do this. projectfolder+ | | |+Folder1 ...
Hi all,I am trying to generate pdf using the following command..javadoc -private -verbose -sourcepath $SOURCEPATH \-doclet com.sun.tools.doclets.mif.MIFDoclet \-docletpath $DOCROOT/tools/mifdoclet1.2/lib/mifdoclet.jar \-batch fmbatch \-print pdf \-booktitle "NSS" \-booksubtitle "Trade" ...
My project is to simulate 6 balls out of a tatslotto machine of 45 balls, no balls can be drawn twice. For some reason my while statement is stopping my prgram from getting past the first ball.Can anyone help ?[code]import javax.swing.JOptionPane;public class Met{public static void main( ...
My project is to simulate 6 balls out of a tatslotto machine of 45 balls, no balls can be drawn twice. For some reason my while statement is stopping my prgram from getting past the first ball.I'm not sure how to write the while statements for this, This is what i have so far, I need the ...
814 byte By
aproka at 2007-9-28 20:44:56
hi,can anybody tell me, why the following code throws an exception?public class InnerClassesTest {public class Hallo {public Hallo() {}public void ding(){System.out.println("ding");}}Hallo hallo;public InnerClassesTest() {}private void create() {try {Class cl = ...