Link to home
Start Free TrialLog in
Avatar of boksi1
boksi1

asked on

input string to form url to read a file from a server

I have been trying to write an applet which allows the user to input 4 digits and take the input string to form a url
with it.
         I have an applet which can get a file from the server and one which can echo user input but I am stuck.
     
        The url is http://abcdefg/hijkl/m_nnnn.txt 
The user is to input "nnnn" and my applet is supposed to
form the url and display the file in their browser.
I have tried to combime these two programs but the  getfile
program is not quite right because it depends upon having an url in the applettag
The textfield program merely echos the user input.
I want to take that input and then form the url to read the file. Can anyone please help me. Thank you. Joseph Ruisi
        the code to echo user input is -
import java.awt.*;

public class TextFieldTest extends java.applet.Applet {

public void init() {
   
       MyTextField text = new MyTextField();
     add(text);
    }
 }
  class MyTextField extends TextField {
   
       public MyTextField() {
   super("Type Your Text",20);
}
}
and the program to get the file is

import java.awt.*;
import java.net.*;
import java.io.*;


public class getFile extends java.applet.Applet {

TextArea text;
String URLString;

public void init() {
URLString = getParameter("url");
setLayout(new BorderLayout());
}

public void start() {
text = new TextArea();

add("Center",text);
add("South", new Button("press"));
try {
int nread;
byte buffer[] = new byte[1024];
URL url = new URL(URLString);
InputStream is = url.openStream();
while ((nread = is.read (buffer)) > 0) {
text.appendText(new String(buffer, 0));
}
}
catch (Exception exp) {
text.setText("Cannot Load: " + URLString  + "\n" + exp.toString());
}
}

}

ASKER CERTIFIED SOLUTION
Avatar of mlimotte
mlimotte

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jpk041897
jpk041897

Edited text of question
Avatar of boksi1

ASKER

Yes First and simply thank you - your approach in one applet is straightforward and I think I understand it. I apologize for my ignorance, but when I compile it in JDK1.1.1 I get,
...undefined variable or class name; getAppletContext
the statement which is flagged is
    try {
                      URL url = new URL ("http", server,
                      url_prefix + text.getText() + url_suffix);
              ----->  getAppletContext.showDocument(url);
                      }
I would like to eliminate this error, I agree with your single applet design, truly portable, and neat. Can you help with the compile message- I really want to test this - it is a pleasure to
talk with someone as knowledgeable as yourself amd I am grateful for your help. I want to use this if I can eliminate the compiler message. Thank you. Yours truly, Joseph Ruisi

Avatar of boksi1

ASKER

Yes I am hoping that mlimotte will add a further comment
and I can eliminate the compiler error. Thanks so much, Joseph Ruisi
Avatar of boksi1

ASKER

Sorry, that was my fault.  getAppletContext is a method, not a property of Applet.  Therefore it should be accessed with () as in:

 ...

URL url = new URL ("http", server,                         url_prefix + text.getText() + url_suffix);
getAppletContext().showDocument(url);

 ...

I left the () out of the original code.  Simply add the parens () after the word getAppletContext and before the period.


Yes - getFile has compiled successfully and I will be testing it
Thank you for the help- I am now on the right track-
Mlimotte- THANK YOU!!