FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
netwok_programmin-java/server.java at main · osama-shift/netwok_programmin-java · GitHub
osama-shift
/
netwok_programmin-java
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
netwok_programmin-java
/
server.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
14 lines (14 loc) · 426 Bytes
Breadcrumbs
netwok_programmin-java
/
server.java
Copy path
File metadata and controls
14 lines (14 loc) · 426 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
java
.
io
.*;
import
java
.
net
.*;
public
class
MyServer
{
public
static
void
main
(
String
[]
args
){
try
{
ServerSocket
ss
=
new
ServerSocket
(
6666
);
Socket
s
=
ss
.
accept
();
//establishes connection
DataInputStream
dis
=
new
DataInputStream
(
s
.
getInputStream
());
String
str
=(
String
)
dis
.
readUTF
();
System
.
out
.
println
(
"message= "
+
str
);
ss
.
close
();
}
catch
(
Exception
e
){
System
.
out
.
println
(
e
);}
}
}
Back
|
FazBrowse Home
|
New Git URL