Skip to content
Snippets Groups Projects
Commit 553a1627 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

Merge origin/master

parents 3f49ad4a 621f6cf9
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ Key course sites: ...@@ -8,7 +8,7 @@ Key course sites:
References and Resources: References and Resources:
* [GitLab Flavored Markdown (GFM)](https://docs.gitlab.com/ee/user/markdown.html) * [GitLab Flavored Markdown (GFM)](https://docs.gitlab.com/ee/user/markdown.html)
* [Java Archive (.jar)](https://docs.oracle.com/javase/tutorial/deployment/jar/basicsindex.html) for sharable/runnable software libraries * [Java Archive (.jar)](https://docs.oracle.com/javase/tutorial/deployment/jar/basicsindex.html) for sharable/runnable software libraries
* [Java SE JDK 8 download](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (not JDK 9) * [Java SE JDK 8 download](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (not JDK 9 or 10)
* [Netbeans 8.2](http://www.netbeans.org) and [Using Git Support in NetBeans IDE](https://netbeans.org/kb/docs/ide/git.html) * [Netbeans 8.2](http://www.netbeans.org) and [Using Git Support in NetBeans IDE](https://netbeans.org/kb/docs/ide/git.html)
and [Video of Cloning a Git Repository Using NetBeans IDE](https://netbeans.org/kb/docs/ide/git_nb_ssh_screencast.html) and [Video of Cloning a Git Repository Using NetBeans IDE](https://netbeans.org/kb/docs/ide/git_nb_ssh_screencast.html)
* [Open-DIS Repository](https://github.com/open-dis) and [Distributed Interactive Simulation: The Missing Handbook](https://github.com/open-dis/DISTutorial/blob/master/README.md) * [Open-DIS Repository](https://github.com/open-dis) and [Distributed Interactive Simulation: The Missing Handbook](https://github.com/open-dis/DISTutorial/blob/master/README.md)
......
...@@ -48,8 +48,8 @@ public class TcpExample ...@@ -48,8 +48,8 @@ public class TcpExample
OutputStream os = clientConnection.getOutputStream(); OutputStream os = clientConnection.getOutputStream();
PrintStream ps = new PrintStream(os); PrintStream ps = new PrintStream(os);
ps.println("This response was written by server TcpExample1"); // to remote client ps.println("This client response was written by server TcpExample1"); // to remote client
System.out.println("This response was written by server TcpExample1"); // to server console System.out.println("This server response was written by server TcpExample1"); // to server console
// "flush()" in important in that it forces a write // "flush()" in important in that it forces a write
// across what is in fact a slow connection // across what is in fact a slow connection
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment