Re: How to create a file in java

2001-06-25 Thread Sachin S. Khanna
Assuming you have access to the JDK Documentation, checkout the FileOutputStream and FileWriter Class in the java.io package. That should be sufficient to write files to the disk. If you need more detailed assistance, a java book or searching the net would be a couple of workable options. Last but

Re: How to create a file in java

2001-06-25 Thread King Maurice
Thanks for the information, but I got enough information about javamail. maurice W.alltechneeds.com - Original Message - From: "Pantarotto, Sio" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 26, 2001 12:10 AM Subject: Re: How to create a file in java > I don't know i

Re: How to create a file in java

2001-06-25 Thread Pantarotto, Sio
I don't know if there is a webhost that allows you to use javamail but if you are looking for an example and codes on how to work with javamail I got a good one in my web site www.geocities.com/hisiomara just click tutorials good luck siomara -Original Message- From: King Maurice [mail

Re: How to create a file in java

2001-06-25 Thread King Maurice
is there a free webhost that allow you to use javamail - Original Message - From: "friza taib" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 25, 2001 10:55 PM Subject: Re: How to create a file in java > yea. > u can use servlet instead. > but yr framework should be JSP-

Re: How to create a file in java

2001-06-25 Thread friza taib
yea. u can use servlet instead. but yr framework should be JSP-->servlet-->... try { 1. use FileInputStream where u can specify yr dir. } catch { } for more details, refer to Java servlet programming by O'reilly >From: Atilio Ranzuglia <[EMAIL PROTECTED]> >Reply-To: A mailing list about J

Re: jsp:useBean and ClassNotFoundException: Please help

2001-06-25 Thread Hans Bergsten
Frank Mancini wrote: > > Question...I have a jsp page that does this > > > > and I'm getting the following error on the JSP Page... > > Could not create a bean of type: CoolMe: java.lang.ClassNotFoundException: > CoolMe and java.lang.ClassNotFoundException: CoolMe > > Within Weblogic 5.1 when

Re: Java XML

2001-06-25 Thread Pantarotto, Sio
You can take a look at java.sun.com XML tutorial,m or You can also take a look at my homepage at: www.geocities.com/hisiomara where I placed an example of a Java Sax Parser. Sio -Original Message- From: Sharon Rose Orillaneda [mailto:[EMAIL PROTECTED]] Sent: Monday, June 25, 2001 6:28 P

oracle

2001-06-25 Thread webmaster
do any of you know where can I find a mailling list for oracle under NT. it may seem very funny...but I have not found any until. now... cheers === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST

Java XML

2001-06-25 Thread Sharon Rose Orillaneda
Hi! Do you have any Java XML tutorial site? Or any other resources? Thanks. -Sharon === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-I

Re: Problem : JSP Tag XML Syntax (, etc.)

2001-06-25 Thread horwat
If you are using JSP 1.1, the "flush" attribute is mandatory for the jsp:include action and must be set to "true". Justy - Original Message - > > > This is a jsp1.0 specification syntax > I don;t know if Tomcat has backward compatibility with jsp1.0 > So check out the site or documen

Re: JSP Error

2001-06-25 Thread horwat
Make sure that the class file for the bean is present in the WEB-INF/classes directory of your web application. Justy - Original Message - > Hi all, > I'm trying the example below: > > hellouser.jsp > <%@ page import="hello.NameHandler" %> > > > > Hello, User > > <%@ include file="d

Re: JSP & applets: accessing class files within JSP

2001-06-25 Thread horwat
The client has its own classloader that should load the applet class. The applet class must be stored in a directory that can be accessed by the web browser. It is part of the public web page structure for the application. FYI, according the the HTML 4.0 specification, the codebase attribute is a

Java web Start

2001-06-25 Thread Glauco de Figueiredo Carneiro
Java Web Start - When trying to launch the application on I receive the following messages: "An error occurred while launching/running the application. Title: Draw 4 Vendor: Sun Microsystems, Inc. Category: Download Error Bad MIME type

Section 508

2001-06-25 Thread Conyers, Dwayne
We are developing JSP for federal government clients and are concerned about compliance with Section 508, which President Bush recently spoke about and which many government agencies are very nervous about. http://www.iqsolutions.com/accessibility/section%20508/default.htm provides details on Sec

Re: where to find an example of the class WebRowSet ??

2001-06-25 Thread Atilio Ranzuglia
Sufi: I really don't know the class you are using, is it available for the public audience? What you can do is run the javadoc tool and see the results? It output is html. Hope this help Atilio --- sufi malak <[EMAIL PROTECTED]> wrote: > Hi, I am looking to understand this class > WebRowSet,

Re: JSP & applets: accessing class files within JSP

2001-06-25 Thread Atilio Ranzuglia
Leonard: The directory /WEB-INF/classes if the default to every context. The libraries (.jar files) should in the /WEF-INF/lib directory. Are you importing the files needed? Be aware that you can have multiple contexts, so (by default) you cannot reach the classes on different contexts. What you

Re: javax.servlet.ServletException: No data found... why???? please h elp..!!

2001-06-25 Thread Atilio Ranzuglia
Chris: What you said is true on JDBC 1.0 but not in JDBC 2.0. JDBC 2.0 allows you to calls the getter method in any order, and to navigate through the ResultSet. There are a lot of new features on JDBC 2.0. Hope this help Atilio --- Chris Pratt <[EMAIL PROTECTED]> wrote: > From what I unders

where to find an example of the class WebRowSet ??

2001-06-25 Thread sufi malak
Hi, I am looking to understand this class WebRowSet, please do you know where can I find and example that is using WebRowSet with jsp or servlet. Thanks lot Sufi _ Get your FREE download of MSN Explorer at http://explorer.msn.com ==

JSP & applets: accessing class files within JSP

2001-06-25 Thread Leonard Wolters
Hi, I have the following problem: Within a JSP page I want to load an applet. Using the tags I should be able to load the applet, however, there seems to be a problem with the codebase, because the applet cannot be loaded (error: ClassNotFoundException). After searching for the solution, i str

Re: javax.servlet.ServletException: No data found... why???? please h elp..!!

2001-06-25 Thread Chris Pratt
>From what I understand, you cannot call a resultSet.getXXX() method more than once on a single value with predictable results. You should probably get it and store it in a variable if you need to use it more than once. (*Chris*) - Original Message - From: "Orozco, Juan Carlos" <[EMA

Re: Hexadecimal to String

2001-06-25 Thread Chris Pratt
It's a little more complicated than that. Here's the complete code: (*Chris*) /** * Junk * * $ID$ * * @author Chris Pratt * @version $Revision$ * * 6/21/01 */ public class Junk { private static final char[] DIGITS = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};

Re: How to create a file in java

2001-06-25 Thread Atilio Ranzuglia
Lorena: there is a lot of information on sun's site. (java.sun.com/j2se/1.3/docs/api/index.hmtl) also check thinking in java 2 (www.bruceeckel.com) the io issue is not a short one Hope this help Atilio --- Lorena Carlo <[EMAIL PROTECTED]> wrote: > Hello all, > > Does anybody know how to creat

Re: Return an excel file to the clients

2001-06-25 Thread Lorena Carlo
Hello, You can format colums in excel, separating each of your columns with a TAB. Do you know how can I save an excel file to the disk with servlets?. bye Lorena - Original Message - From: Segador Corraliza, Jose Abel [EES/ES] <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday

How to create a file in java

2001-06-25 Thread Lorena Carlo
Hello all, Does anybody know how to create a file in java and then save it to some direction of the disk? Please help me, thanks in advance Lorena Carlo === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-

JSP Error

2001-06-25 Thread S. Jyotinarayan
Hi all, I'm trying the example below: hellouser.jsp <%@ page import="hello.NameHandler" %> Hello, User <%@ include file="dukebanner.html" %>   My name is Duke. What's yours? <% if ( request.getParameter("username") != null ) { %> <%@ include file="response.jsp" %> <% } %>

Re: javax.servlet.ServletException: No data found... why???? please h elp..!!

2001-06-25 Thread Atilio Ranzuglia
Juan Carlos: When you work with ResultSets you should know the following: - a ResultSet has a row before the first one, this is the one where you are positioned every time you execute a query. - a ResultSet also has a after last row, this is the one to insert rows in it. So, look the followin

Re: jsp:useBean and ClassNotFoundException: Please help

2001-06-25 Thread Atilio Ranzuglia
Frank: Here the problem is not the classpath. You should verify the following: is the class CoolMe inside any package? If so you should write: And one other thing: are you importing your class inside the page? if you aren't doing this write: <%@ page import="yourpackage.CoolMe" %> Hope this

"signoff >>JSP-INTEREST"

2001-06-25 Thread srinivas tadikonda
"signoff >>JSP-INTEREST".Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: