Перейти по ссылке java

Прежде всего, в java передается только значение?

На самом деле, некоторые люди думают, что есть, некоторые думают, что нет, у каждого есть свои причины.
Как вы это понимаете?

При передаче объекта в качестве параметра в java на самом деле передается только копия ссылки на объект, что может быть немного трудно понять. Вот пример:

public class Example < String account = "hello"; public static void main(String[] args) < // TODO Auto-generated method stub Example e = new Example(); e.change(e); System.out.print(e.account); >void change(Example e) < e.account="hello1"; >> 

Здесь выводится hello1, что соответствует нашим ожиданиям, возможно, здесь мы подумаем, что это эталонный проход! ! Фактически, то, что здесь передается, является только копией ссылки на объект Example.Прислушиваясь к имени, это просто копия, которая, естественно, не имеет отношения к исходной ссылке.Просто эти две ссылки указывают на один и тот же контент., Итак, когда мы меняем содержимое, содержимое исходного объекта также изменяется!

Взгляните на другой пример:

public class Example < String account = "hello"; public static void main(String[] args) < // TODO Auto-generated method stub Example e = new Example(); e.change(e.account); System.out.print(e.account); >void change(String a) < a="hello1"; >> 

Результат здесь — привет. Выяснилось, что на этот раз значение учетной записи не было изменено. Почему?

Фактически, то, что здесь передается, также является копией ссылки на объект, но здесь передается объект String: копия ссылки на объект учетной записи. Как вы можете видеть, в методе изменения a указывает на «hello1» , что эквивалентно аккаунту и. Ссылки указывают на другое содержимое. В настоящее время содержимое, на которое указывает ссылка, изменилось. Естественно, это не имеет ничего общего с содержимым, на которое указывает учетная запись!

Читайте также:  Java constant string to long

Наконец, позвольте мне резюмировать, почему при передаче объекта в качестве параметра это так похоже на передачу по ссылке!

Это потому, что передается копия ссылки.Если вы не укажете эту подделку на новый контент (объект), то объект, на который она указывает, все равно будет исходным! Когда вы манипулируете объектом, на который ссылается эта ссылка, вы фактически манипулируете исходным содержимым.

Источник

Connecting to a URL

After you’ve successfully created a URL object, you can call the URL object’s openConnection method to get a URLConnection object, or one of its protocol specific subclasses, for example java.net.HttpURLConnection

You can use this URLConnection object to setup parameters and general request properties that you may need before connecting. Connection to the remote object represented by the URL is only initiated when the URLConnection.connect method is called. When you do this you are initializing a communication link between your Java program and the URL over the network. For example, the following code opens a connection to the site example.com :

try < URL myURL = new URL("http://example.com/"); URLConnection myURLConnection = myURL.openConnection(); myURLConnection.connect(); >catch (MalformedURLException e) < // new URL() failed // . >catch (IOException e) < // openConnection() failed // . >

A new URLConnection object is created every time by calling the openConnection method of the protocol handler for this URL.

You are not always required to explicitly call the connect method to initiate the connection. Operations that depend on being connected, like getInputStream , getOutputStream , etc, will implicitly perform the connection, if necessary.

Now that you’ve successfully connected to your URL, you can use the URLConnection object to perform actions such as reading from or writing to the connection. The next section shows you how.

Источник

Lesson: Working with URLs

URL is the acronym for Uniform Resource Locator. It is a reference (an address) to a resource on the Internet. You provide URLs to your favorite Web browser so that it can locate files on the Internet in the same way that you provide addresses on letters so that the post office can locate your correspondents.

Java programs that interact with the Internet also may use URLs to find the resources on the Internet they wish to access. Java programs can use a class called URL in the java.net package to represent a URL address.

The term URL can be ambiguous. It can refer to an Internet address or a URL object in a Java program. Where the meaning of URL needs to be specific, this text uses «URL address» to mean an Internet address and » URL object» to refer to an instance of the URL class in a program.

What Is a URL?

A URL takes the form of a string that describes how to find a resource on the Internet. URLs have two main components: the protocol needed to access the resource and the location of the resource.

Creating a URL

Within your Java programs, you can create a URL object that represents a URL address. The URL object always refers to an absolute URL but can be constructed from an absolute URL, a relative URL, or from URL components.

Parsing a URL

Gone are the days of parsing a URL to find out the host name, filename, and other information. With a valid URL object you can call any of its accessor methods to get all of that information from the URL without doing any string parsing!

Reading Directly from a URL

This section shows how your Java programs can read from a URL using the openStream() method.

Connecting to a URL

If you want to do more than just read from a URL, you can connect to it by calling openConnection() on the URL. The openConnection() method returns a URLConnection object that you can use for more general communications with the URL, such as reading from it, writing to it, or querying it for content and other information.

Reading from and Writing to a URLConnection

Some URLs, such as many that are connected to cgi-bin scripts, allow you to (or even require you to) write information to the URL. For example, a search script may require detailed query data to be written to the URL before the search can be performed. This section shows you how to write to a URL and how to get results back.

Источник

Самый простой способ «перейти» на страницу и отправить форму на Java

Что мне нужно сделать, это перейти на веб-страницу, войти в систему, а затем перейти на другую веб-страницу на этом сайте, для которой требуется, чтобы вы вошли в систему, поэтому необходимо сохранить файлы cookie. После этого мне нужно щелкнуть элемент на этой странице, в котором я бы заполнил форму и получил сообщение о том, что веб-страница вернется ко мне. Причина, по которой мне нужно фактически перейти на страницу и нажать кнопку, так как предположим, что просто перейти непосредственно к ссылке — это то, что вам присваивается идентификатор сеанса каждый раз, когда вы входите в систему и щелкаете по ссылке, и ее всегда разные. Кнопка выглядит так: это не нормальная ссылка href:

В любом случае, что было бы самым простым способом сделать это? Спасибо. Обновление: После попытки использования HTMLunit и других браузеров без браузера, похоже, что это происходит, используя что-либо «без головы». Еще одна вещь, которую я недавно узнал об этой странице, — это то, что весь HTML находится в каком-то странном формате. Его все внутри тега script. Вот пример.

"?ui\x3d2\x26view\x3dss\x26mset\x3dmain\x26ver\x3d-68igm85d1771\x26am\x3d!Zsl-0RZ-XLv0BO3aNKsL0sgMg3nH10t5WrPgJSU8CYS-KNWlyrLmiW3HvC5ykER_n_5dDw\x26fri"],"http://example.com/?ctx\x3d%67mail\x26hl\x3den",,0,"Gmail","Gmail",[["us","c130f0854ca2c2bb",[["n"],["m","New features!"],["u"],["k","0"],["p","1000:500000,10,200000,5,100000,3,75000,2,0,1"],["h","https://survey.googleratings.com/wix/p1679258.aspx?l\x3d1033"],["at","query,5,contacts,5,adv,5,cf,5,default,20"],["v","https://www.youtube.com/embed/Ra8HG6MkOXY?showinfo\x3d0"], 

Когда я проверяю элемент на кнопке, появляется код HTML, который я написал выше для кнопки, но не при создании источника просмотра. В принципе, мне нужно будет использовать какой-то графический интерфейс и пользователь должен перейти к ссылке, а затем заполнить эту информацию. Кто-нибудь знает, как я могу это сделать? Спасибо.

Проверьте Селен и Селен IDE. В Интернете можно найти множество статей и инструкций, которые помогут вам начать работу за несколько часов.

Источник

Оцените статью