- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Java problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 10:21 PM
02-24-2003 10:21 PM
I have installed JDK 1.3 on hp-ux 11.11.
I am seeing this erro when I run some java program
java.io.IOException: File table overflow
at java.lang.UNIXProcess.forkAndExec(Native Method)
at java.lang.UNIXProcess.
at java.lang.Runtime.execInternal(Native Method)
at java.lang.Runtime.exec(Unknown Source)
at java.lang.reflect.Method.invoke(Native Method)
at org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.jav
a:564)
at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:384)
at
org.apache.tools.ant.taskdefs.Execute.getProcEnvironment(Execute.java:162)
at
org.apache.tools.ant.taskdefs.Property.loadEnvironment(Property.java:250)
at org.apache.tools.ant.taskdefs.Property.execute(Property.java:183)
at org.apache.tools.ant.ProjectHelper$TaskHandler.finished(ProjectHelper.java:4
89)
at org.apache.tools.ant.ProjectHelper$AbstractHandler.endElement(ProjectHelper.
java:204)
at
org.xml.sax.helpers.XMLReaderAdapter.endElement(XMLReaderAdapter.java:347)
at
weblogic.apache.xerces.parsers.SAXParser.endElement(SAXParser.java:1411)
at weblogic.apache.xerces.validators.common.XMLValidator.callEndElement(XMLVali
dator.java:1613)
at weblogic.apache.xerces.framework.XMLDocumentScanner.scanElement(XMLDocumentS
canner.java:1824)
at weblogic.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispat
ch(XMLDocumentScanner.java:1197)
at weblogic.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentSca
nner.java:396)
at
weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:1119)
at
org.xml.sax.helpers.XMLReaderAdapter.parse(XMLReaderAdapter.java:223)
at weblogic.xml.jaxp.WebLogicParser.parse(WebLogicParser.java:67)
at weblogic.xml.jaxp.RegistryParser.parse(RegistryParser.java:144)
at javax.xml.parsers.SAXParser.parse(SAXParser.java:326)
at org.apache.tools.ant.ProjectHelper.parse(ProjectHelper.java:117)
at
org.apache.tools.ant.ProjectHelper.configureProject(ProjectHelper.java:85)
at org.apache.tools.ant.Main.runBuild(Main.java:439)
at org.apache.tools.ant.Main.start(Main.java:153)
at org.apache.tools.ant.Main.main(Main.java:176)
clean:
WHat could be the problem??
Thanks,
Karthik
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 10:35 PM
02-24-2003 10:35 PM
Re: Java problem
have you imported these files.
import java.io.FileNotFoundException;
import java.io.IOException;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 10:36 PM
02-24-2003 10:36 PM
Re: Java problem
have you imported these files.
import java.io.FileNotFoundException;
import java.io.IOException;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 10:36 PM
02-24-2003 10:36 PM
Re: Java problem
have you imported these files.
import java.io.FileNotFoundException;
import java.io.IOException;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 10:40 PM
02-24-2003 10:40 PM
Re: Java problem
Have you included these ?
import java.io.FileNotFoundException;
import java.io.IOException;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 10:41 PM
02-24-2003 10:41 PM
Re: Java problem
Have you included these ?
import java.io.FileNotFoundException;
import java.io.IOException;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 10:47 PM
02-24-2003 10:47 PM
Re: Java problem
i had problem with my proxy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 10:48 PM
02-24-2003 10:48 PM
Re: Java problem
How to import these files? I am new to Java. This problem was reported by out client and I got to fix it.
Thanks
Karthik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 11:08 PM
02-24-2003 11:08 PM
Solution1.To fix it temporarily you need to close down the unrequired process which can reduce the number of open files.
2.A permanent fix would be to increase the kernel parameter "nfile"
Increase the parameter nfile.Rebuild the kernel and reboot
That should resolve the problem
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 11:08 PM
02-24-2003 11:08 PM
Re: Java problem
These are all classes
Here is a description of the classes included
to one my java file :
package org.xml.io;
import java.io.Writer;
import java.io.FilterWriter;
import java.io.IOException;
import java.util.Hashtable;
{program ...
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2003 12:53 AM
02-25-2003 12:53 AM
Re: Java problem
Karthik