-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconnect_to_internet.java
executable file
·235 lines (231 loc) · 6.28 KB
/
connect_to_internet.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
import java.net.*;
import java.io.*;
import java.util.Date;
class net{
static boolean url_to_file(String url_path,String filename){
InputStream in=null;
OutputStream os=null;
boolean result=false;
// ᮧ¤ âì ®¡ê¥ªâë ¤«ï ¯®«ãç¥¨ï ¯®â®ª®¢
try{
URL url=new URL(url_path);
in=url.openStream();
os=new FileOutputStream(filename);
byte[] buffer=new byte[4096];
int read_bytes=0;
while((read_bytes=in.read(buffer))!=-1){
os.write(buffer, 0, read_bytes);
}
result=true;
}
catch(Exception e){
System.out.println("Detected Error:"+e.getMessage());
}
finally{
try{
if(in!=null){
in.close();
}
if(os!=null){
os.close();
}
}
catch(Exception e){
System.out.println("Detected Error when closing Input and Output Stream");
}
}
return result;
}
static boolean file_to_file(String source,String destination){
InputStream source_stream=null;
OutputStream destination_stream=null;
boolean result=false;
try{
source_stream=new FileInputStream(source);
destination_stream=new FileOutputStream(destination);
byte[] buffer=new byte[4096];
int read_bytes=0;
while((read_bytes=source_stream.read(buffer))!=-1){
destination_stream.write(buffer,0,read_bytes);
}
result=true;
}
catch(Exception e){
System.out.println("Detected Error: "+e.getMessage());
result=false;
}
finally{
try{
if(source_stream!=null){
source_stream.close();
}
if(destination_stream!=null){
destination_stream.close();
}
}
catch(Exception e){
System.out.println("Error during closing");
}
}
return result;
}
static boolean file_to_console(String source){
boolean result=false;
FileInputStream fis=null;
FileOutputStream fos=null;
try{
fis=new FileInputStream(source);
byte[] buffer=new byte[4096];
int quentity_byte=0;
while((quentity_byte=fis.read(buffer))!=-1){
String s=new String(buffer,0,quentity_byte);
System.out.println(s);
}
result=true;
}
catch(Exception e){
System.out.println("Detected Error into method <file_to_console> ");
result=false;
}
finally{
try{
if(fis!=null){
fis.close();
};
if(fos!=null){
fos.close();
}
}
catch(Exception e){
System.out.println("Detected Error when closing files");
}
}
return result;
}
static boolean urlconnection_to_console(String url_path){
boolean result=false;
URLConnection c=null;
try{
c=(new URL(url_path)).openConnection();
c.setDoInput(true);// ãáâ ®¢¨âì ¢®§¬®¦®áâì ç⥨ï=true
c.setDoOutput(false);// ãáâ ®¢¨âì ¢®§¬®¦®áâì § ¯¨á¨=false
c.connect();
System.out.println("’¨¯ ᮤ¥à¦¨¬®£®: "+c.getContentType());
System.out.println("Š®¤¨à®¢ª : "+c.getContentEncoding());
System.out.println(" §¬¥à ᮤ¥à¦¨¬®£®: "+c.getContentLength());
System.out.println("„ â : "+(new Date(c.getDate())));
System.out.println("„ â ¯®á«¥¤¥£® ¨§¬¥¥¨ï: "+(new Date(c.getLastModified())));
System.out.println("‘ப £®¤®áâ¨: "+(new Date(c.getExpiration())));
// ¥á«¨ íâ® HTTP ᮥ¤¨¥¨¥
if(c instanceof HttpURLConnection){
HttpURLConnection h=(HttpURLConnection)c;
System.out.println("Œ¥â®¤ § ¯à®á : "+h.getRequestMethod());
System.out.println("‘®®¡é¥¨¥ ®â¢¥â : "+h.getResponseMessage());
System.out.println("Š®¤ ®â¢¥â : "+h.getResponseCode());
}
BufferedInputStream bis=new BufferedInputStream(c.getInputStream());
byte[] buffer=new byte[4096];
int byte_count=0;
while((byte_count=bis.read(buffer))!=-1){
String s=new String(buffer,0,byte_count);
System.out.println(s);
}
bis.close();
}
catch(Exception e){
System.out.println(" Detected exception into method <urlconnection_to_console>"+e.getMessage());
}
return result;
}
static boolean socket_to_file(String path_to_socket,int port,String path_to_file){
boolean result=false;
Socket s=null;
try{
System.out.println("socket");
s=new Socket(path_to_socket,port);
InputStream is=s.getInputStream();
OutputStream os=s.getOutputStream();
BufferedInputStream bis=new BufferedInputStream(is);
BufferedOutputStream bos=new BufferedOutputStream(os);
byte[] buffer=new byte[4096];
String out_string_2=new String("GET 1.php \n\n");
bos.write(out_string_2.getBytes());
bos.flush();
int read_count=0;
while((read_count=bis.read(buffer))!=-1){
String out_string=new String(buffer,0,read_count);
System.out.println(">>>"+out_string);
}
bis.close();
bis.close();
is.close();
os.close();
}
catch(Exception e){
System.out.println(" Error : "+e.getMessage());
}
return result;
}
static boolean String_to_file(String filename,String text){
boolean result=false;
try{
FileOutputStream f=new FileOutputStream(filename);
f.write(text.getBytes());
f.flush();
f.close();
result=true;
}
catch(IOException e){
System.out.println(" Error in open file:"+e.getMessage());
}
return result;
}
static boolean URL_to_file(String url_path,String filename){
boolean result=false;
URL site=null;
FileOutputStream fos=null;
InputStream is=null;
try{
site=new URL(url_path);
is=site.openStream();
fos=new FileOutputStream(filename);
byte[] buffer=new byte[1024];
int read_byte=0;
while((read_byte=is.read(buffer))!=-1){
fos.write(buffer,0,read_byte);
}
}
catch(Exception e){
}
finally{
if(fos!=null){
try{
fos.close();
}
catch(IOException e){
System.out.println("Error in closing file "+filename);
}
}
if(is!=null){
try{
is.close();
}
catch(IOException e){
System.out.println("Error in close stream of site"+url_path);
}
}
}
return result;
}
}
public class connect_to_internet {
public static void main(String args[]){
//net.url_to_file("http://127.0.0.1","c:\\3.txt");
//net.file_to_file("c:\\3.txt", "c:\\4.txt");
//net.file_to_console("c:\\4.txt");
//net.urlconnection_to_console("http://127.0.0.1");
//net.socket_to_file("http://127.0.0.1", 80, "c:\1.txt");
net.String_to_file("c:\\1.txt", "Hello");
net.URL_to_file("http://www.ya.ru", "c:\\ya_ru.html");
}
}