Creating URL in java
Hii to all
I m trying to create a url using java. Address is http://www.merchant.com/pg/index.html
When i m going to run this address on browser i got error 404 page not found.
My code is
public class Url {
/**
* @param args
*/
public static void main(String[] args) {
try {
//
// Creating a url object by specifing each parameter separately, including
// the protocol, hostname, port number, and the page name
//
URL url = new URL("http", "www.Merchant.com" , 80, "/pg/index.html");
//URL url = new URL("http://Merchant.com/index.html");
// We can also specify the address in a single line.
//www.merchant.com/pg/index.html
BufferedReader reader = new BufferedReader(new InputStreamReader(url.openStream()));
String line;
while ((line = reader.readLine()) != null) {
System.out.println(line);
}
reader.close();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
How to solve this? Plz help.
View Answers
November 27, 2013 at 2:00 PM
November 28, 2013 at 3:45 PM
I m linux user... Developing my project in Eclipse IDE. and
the project structure folder is "Merchant.com(my project
name)-->WebContent-->pg(folder)-->index.html(file)".
I m run this project on tomcat server so that the folder structure is
"mycomputer-->usr-->shear-->Apachetomcat-->webapps-->MyProject(
created manually by me)-->Merchant.com"
so my question is where do i put index.html? AM i missing something?
Ads
Related Tutorials/Questions & Answers:
Creating URL in java
Creating URL in java Hii to all
I m trying to create a
url using
java. Address is http://www.merchant.com/pg/index.html
When i m going to run...
Url {
/**
* @param args
*/
public static void main(String
creating a friendly url for web application
creating a friendly
url for web application Hi all,
I don't know how to create a friendly
url for a web application. Please help me to resolve this problem.
Thanks,
Suresh
Advertisements
Creating URL using <c:url>
Creating URL using <c:url>
 ... by
creating it or by or by using the
existing one. If the browser doesn't support the cookies then the container will
automatically use the
URL rewriting
Creating PDF in JAVA
Creating PDF in JAVA How create pdf in
java ? Take value from database for particular PDF
creating reports in java
creating reports in java how to create reports automatically in
java and send it via mail by scheduling tine for weekly,monthly basis
creating JAR - Java Beginners
creating JAR I am beginner in J2ee.I am
creating an application... installed SQL and Tomcat.I created a JAR of my
java project and included in the library of web project.
My problems
1. I added new class in the
java project
creating java classes
creating java classes Create a
Java class that can be used to store inventory information about a book. Your class should store the book title... a program that tests your class by
creating and using at least two objects of the class
creating packages in java
creating packages in java Hi everybody,
I am Rupesh Narayan, i faces a problem while
creating package in core
java.
I write two programs that are described below:-
1.PackageDemo.java
package javaclass;
import java.io.*;
public
creating java classes
creating java classes This program uses a class named DrivingLicense to keep track of two driving licenses, including the driver?s name, and the number of speeding tickets they have received. You may not modify the DLTest code
Creating Excel sheets - Java Beginners
Creating Excel sheets Hi, I want the
java code for
creating excels sheets with two workbooks using POI, and to find the difference between the particular value of one cell and others. asuming the contents of teh files adn
Java GUI code- creating a circle
Java GUI code-
creating a circle My assignment is to write a program that prompts the user to enter the center and a point on the circle, which is (x,y)(x2,y2). The program should then output the circle's radius, circumference
Java URL inputstream caching
Java URL inputstream caching I have a web application in which the header is displayed by hitting a
URL. Since the header content doesnt change always i wanted to cache the results of the
URL inputstream and refresh it for every
Creating a JAR file in Java
Creating a JAR file in
Java
This section provides you to the
creating a jar file
through the
java source code by using the jar tool command which is provided
URL Rewriting in Java
URL Rewriting in
Java
URL rewriting a session management technique and in this tutorial, you will be informed about
URL Rewriting in
Java.
URL writing is a way, which is used to hide the original
URL. It is commonly handle by filter, You
Creating an Applet
Creating an Applet Hi, I have get a task regarding
Creating... your concerned queries in this regards.
http://www.roseindia.net/
java/example/
java/applet/firstapplet.shtml
Thanks
How to Overcome proxy in Java URL connection
How to Overcome proxy in
Java URL connection Hi,
I'm just trying to make
java url connection. But it shows some errors due to proxy .....
I would like to read a
URL (http://google.com) using
java url, i made the
url
java how to get domain name from url
java how to get domain name from url How to get the domain name from a
url string?
Example program in
java for "how to get domain name from
url"
Thanks
Hi,
You can use the following example code:
URL linkURL
creating windo chat
creating windo chat hi ... please could you help me in
creating chat aprograme in
java ???? with comments beside codes please
Creating Exception
Creating Exception class Myexception extends Exception{
private int detail;
Myexecption(int a){
detail=a;
}
public String toString(){
return...
Hi,
Read at
Java Exception examples.
Thanks
Creating a Frame
, calender, combobox checkbox and many more
for
creating GUI in
Java based...
Java Swing
In this section we are giving many tutorial example
of
Java... with your applet.
Swing libraries is used for
creating desktop applications
Creating Views
Creating Views
Struts provides their own JSP tag library for
creating view. For using those
library you need to import them on your page as
<%@taglib... data by model and handle them appropriately. For
creating a view you should
URL CODE OF BUTTONS
URL CODE OF BUTTONS how to create a button tag,
i need a details for
creating a button tag with
url code
<c: url> in JSTL
firstly it
is important to get a session object either by
creating... then the container will
automatically use the
URL rewriting. In servlets while the
url... of the
URL.
We can do the same thing by using the <c: url>
core action