move networking articles, update readme

This commit is contained in:
Loredana 2018-12-25 14:05:10 +02:00
parent 68f1cb23dd
commit fb66f1bc78
13 changed files with 19 additions and 15 deletions

View File

@ -8,4 +8,6 @@
- [Broadcasting and Multicasting in Java](http://www.baeldung.com/java-broadcast-multicast)
- [A Guide To UDP In Java](http://www.baeldung.com/udp-in-java)
- [Sending Emails with Java](http://www.baeldung.com/java-email)
- [Console I/O in Java](http://www.baeldung.com/java-console-input-output)
- [A Guide To HTTP Cookies In Java](http://www.baeldung.com/cookies-java)
- [A Guide to the Java URL](http://www.baeldung.com/java-url)
- [Working with Network Interfaces in Java](http://www.baeldung.com/java-network-interfaces)

View File

@ -19,6 +19,11 @@
<artifactId>mail</artifactId>
<version>${javax.mail.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
</dependencies>
<build>
@ -27,5 +32,6 @@
<properties>
<javax.mail.version>1.5.0-b01</javax.mail.version>
<commons-io.version>2.5</commons-io.version>
</properties>
</project>

View File

@ -1,5 +0,0 @@
### Relevant Articles:
- [A Guide To UDP In Java](http://www.baeldung.com/udp-in-java)
- [A Guide To HTTP Cookies In Java](http://www.baeldung.com/cookies-java)
- [A Guide to the Java URL](http://www.baeldung.com/java-url)
- [Working with Network Interfaces in Java](http://www.baeldung.com/java-network-interfaces)

View File

@ -1,4 +1,4 @@
package com.baeldung.javanetworking.uriurl;
package com.baeldung.networking.uriurl;
import java.io.BufferedReader;
import java.io.IOException;

View File

@ -1,4 +1,4 @@
package com.baeldung.javanetworking.uriurl;
package com.baeldung.networking.uriurl;
import java.io.BufferedReader;
import java.io.IOException;

View File

@ -1,4 +1,4 @@
package com.baeldung.java.networking.interfaces;
package com.baeldung.networking.interfaces;
import org.junit.Test;

View File

@ -1,4 +1,4 @@
package com.baeldung.javanetworking.uriurl.test;
package com.baeldung.networking.uriurl;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
@ -20,7 +20,7 @@ import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.baeldung.javanetworking.uriurl.URLDemo;
import com.baeldung.networking.uriurl.URLDemo;
@FixMethodOrder
public class URIDemoLiveTest {

View File

@ -1,4 +1,4 @@
package com.baeldung.javanetworking.uriurl;
package com.baeldung.networking.uriurl;
import java.io.IOException;
import java.net.MalformedURLException;

View File

@ -1,4 +1,4 @@
package com.baeldung.javanetworking.uriurl.test;
package com.baeldung.networking.uriurl;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
@ -18,7 +18,7 @@ import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.baeldung.javanetworking.uriurl.URLDemo;
import com.baeldung.networking.uriurl.URLDemo;
@FixMethodOrder
public class URLDemoLiveTest {

View File

@ -1,4 +1,4 @@
package com.baeldung.java.networking.url;
package com.baeldung.networking.url;
import static org.junit.Assert.assertEquals;

View File

@ -71,3 +71,4 @@
- [Calculate the Area of a Circle in Java](https://www.baeldung.com/java-calculate-circle-area)
- [A Guide to the Java Math Class](https://www.baeldung.com/java-lang-math)
- [Graphs in Java](https://www.baeldung.com/java-graphs)
- [Console I/O in Java](http://www.baeldung.com/java-console-input-output)