Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
Curl
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
9831006
Curl
Commits
4aeae7c2
Commit
4aeae7c2
authored
Jun 08, 2020
by
kiana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
saving and response to requests again is improved
parent
f243ea99
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
434 additions
and
171 deletions
+434
-171
Fire.java
src/Fire.java
+119
-0
GetResponse.java
src/GetResponse.java
+257
-75
Main.java
src/Main.java
+8
-4
Response.java
src/Response.java
+50
-92
No files found.
src/Fire.java
0 → 100644
View file @
4aeae7c2
import
java.io.*
;
import
java.net.HttpURLConnection
;
import
java.net.URL
;
import
java.nio.charset.StandardCharsets
;
import
java.nio.file.Files
;
import
java.nio.file.Paths
;
import
java.util.Random
;
import
java.util.stream.Stream
;
public
class
Fire
{
GetResponse
savedRequests
;
File
[]
files
;
public
Fire
()
{
}
public
void
fire
(
int
i
)
{
i
--;
if
(
files
[
i
].
getName
().
contains
(
".txt"
))
{
BufferedReader
reader
=
null
;
try
{
reader
=
new
BufferedReader
(
new
FileReader
(
files
[
i
]));
}
catch
(
FileNotFoundException
e
)
{
e
.
printStackTrace
();
}
String
content
=
null
;
try
{
content
=
reader
.
readLine
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
try
{
reader
.
close
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
//System.out.println(content);
savedRequests
=
new
GetResponse
(
content
);
}
}
public
void
showRequest
(){
int
count
=
0
;
for
(
File
file
:
files
)
{
if
(
file
.
getName
().
contains
(
".txt"
)
&&
file
.
getName
().
contains
(
".txt"
))
{
count
++;
System
.
out
.
println
();
System
.
out
.
print
(
count
+
" . "
);
BufferedReader
reader
=
null
;
try
{
reader
=
new
BufferedReader
(
new
FileReader
(
file
));
}
catch
(
FileNotFoundException
e
)
{
e
.
printStackTrace
();
}
String
content
=
null
;
try
{
content
=
reader
.
readLine
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
try
{
reader
.
close
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
//System.out.println(content);
String
[]
contentCopy
=
content
.
trim
().
split
(
" "
);
for
(
int
i
=
0
;
i
<
contentCopy
.
length
;
i
++)
{
if
(
contentCopy
[
i
].
contains
(
"http://"
))
{
System
.
out
.
print
(
"url: "
+
contentCopy
[
i
]
+
"| "
);
}
if
(
contentCopy
[
i
].
equals
(
"-M"
)
||
contentCopy
[
i
].
equals
(
"--method"
))
{
System
.
out
.
print
(
"method: "
+
contentCopy
[
i
+
1
]
+
"| "
);
}
else
if
(
contentCopy
[
i
].
equals
(
"-H"
)
||
contentCopy
[
i
].
equals
(
"--headers"
))
{
//setting headers
String
[]
keyValue
=
contentCopy
[
i
+
1
].
trim
().
split
(
";"
);
//splitting headers from each other
System
.
out
.
print
(
"headers: "
);
for
(
int
j
=
0
;
j
<
keyValue
.
length
;
j
++)
{
String
[]
keyValueCopy
=
keyValue
[
j
].
trim
().
split
(
":"
);
//splitting key and value
String
key
=
keyValueCopy
[
0
];
String
value
=
keyValueCopy
[
1
];
System
.
out
.
print
(
key
+
": "
+
value
+
"/"
);
}
i
++;
}
else
if
(
contentCopy
[
i
].
equals
(
"-i"
))
{
System
.
out
.
println
(
"include headers: true"
+
"| "
);
}
else
if
(
contentCopy
[
i
].
equals
(
"-O"
)
||
contentCopy
[
i
].
equals
(
"--output"
))
{
System
.
out
.
println
(
"output: true"
+
"| "
);
}
else
if
(
contentCopy
[
i
].
equals
(
"-d"
)
||
contentCopy
[
i
].
equals
(
"--data"
))
{
String
cont
=
contentCopy
[
i
+
1
];
System
.
out
.
print
(
"messageBody: "
+
cont
+
"| "
);
}
}
}
}
System
.
out
.
println
();
}
}
\ No newline at end of file
src/GetResponse.java
View file @
4aeae7c2
This diff is collapsed.
Click to expand it.
src/Main.java
View file @
4aeae7c2
import
java.io.IOException
;
import
java.net.*
;
import
java.util.Scanner
;
import
java.util.Scanner
;
import
java.io.IOException
;
import
java.net.HttpURLConnection
;
import
java.net.URL
;
public
class
Main
{
public
static
void
main
(
String
[]
args
){
// GetResponse getResponse = new GetResponse();
// getResponse.splitRequest();
// Response response = new Response();
public
static
void
main
(
String
[]
args
)
throws
IOException
{
GetResponse
response
=
new
GetResponse
();
}
}
src/Response.java
View file @
4aeae7c2
import
java.io.BufferedReader
;
import
java.io.IOException
;
import
java.io.InputStreamReader
;
import
java.io.OutputStream
;
import
java.net.HttpURLConnection
;
import
java.net.URL
;
public
class
Response
{
private
static
final
String
USER_AGENT
=
"Mozilla/5.0"
;
private
static
final
String
GET_URL
=
"https://localhost:9090/SpringMVCExample"
;
private
static
final
String
POST_URL
=
"https://localhost:9090/SpringMVCExample/home"
;
private
static
final
String
POST_PARAMS
=
"userName=Pankaj"
;
public
Response
(){
try
{
sendGET
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
System
.
out
.
println
(
"GET DONE"
);
try
{
sendPOST
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
System
.
out
.
println
(
"POST DONE"
);
}
private
static
void
sendGET
()
throws
IOException
{
URL
obj
=
new
URL
(
GET_URL
);
HttpURLConnection
con
=
(
HttpURLConnection
)
obj
.
openConnection
();
con
.
setRequestMethod
(
"GET"
);
con
.
setRequestProperty
(
"User-Agent"
,
USER_AGENT
);
int
responseCode
=
con
.
getResponseCode
();
System
.
out
.
println
(
"GET Response Code :: "
+
responseCode
);
if
(
responseCode
==
HttpURLConnection
.
HTTP_OK
)
{
// success
BufferedReader
in
=
new
BufferedReader
(
new
InputStreamReader
(
con
.
getInputStream
()));
String
inputLine
;
StringBuffer
response
=
new
StringBuffer
();
while
((
inputLine
=
in
.
readLine
())
!=
null
)
{
response
.
append
(
inputLine
);
}
in
.
close
();
// print result
System
.
out
.
println
(
response
.
toString
());
}
else
{
System
.
out
.
println
(
"GET request not worked"
);
}
// Import required java libraries
import
java.io.*
;
import
javax.servlet.*
;
import
javax.servlet.http.*
;
import
java.util.*
;
// Extend HttpServlet class
public
class
Response
extends
HttpServlet
{
// Method to handle GET method request.
public
void
doGet
(
HttpServletRequest
request
,
HttpServletResponse
response
)
throws
ServletException
,
IOException
{
// Set refresh, autoload time as 5 seconds
response
.
setIntHeader
(
"Refresh"
,
5
);
// Set response content type
response
.
setContentType
(
"text/html"
);
// Get current time
Calendar
calendar
=
new
GregorianCalendar
();
String
am_pm
;
int
hour
=
calendar
.
get
(
Calendar
.
HOUR
);
int
minute
=
calendar
.
get
(
Calendar
.
MINUTE
);
int
second
=
calendar
.
get
(
Calendar
.
SECOND
);
if
(
calendar
.
get
(
Calendar
.
AM_PM
)
==
0
)
am_pm
=
"AM"
;
else
am_pm
=
"PM"
;
String
CT
=
hour
+
":"
+
minute
+
":"
+
second
+
" "
+
am_pm
;
PrintWriter
out
=
response
.
getWriter
();
String
title
=
"Auto Refresh Header Setting"
;
String
docType
=
"<!doctype html public \"-//w3c//dtd html 4.0 "
+
"transitional//en\">\n"
;
out
.
println
(
docType
+
"<html>\n"
+
"<head><title>"
+
title
+
"</title></head>\n"
+
"<body bgcolor = \"#f0f0f0\">\n"
+
"<h1 align = \"center\">"
+
title
+
"</h1>\n"
+
"<p>Current Time is: "
+
CT
+
"</p>\n"
);
}
private
static
void
sendPOST
()
throws
IOException
{
URL
obj
=
new
URL
(
POST_URL
);
HttpURLConnection
con
=
(
HttpURLConnection
)
obj
.
openConnection
();
con
.
setRequestMethod
(
"POST"
);
con
.
setRequestProperty
(
"User-Agent"
,
USER_AGENT
);
// For POST only - START
con
.
setDoOutput
(
true
);
OutputStream
os
=
con
.
getOutputStream
();
os
.
write
(
POST_PARAMS
.
getBytes
());
os
.
flush
();
os
.
close
();
// For POST only - END
// Method to handle POST method request.
public
void
doPost
(
HttpServletRequest
request
,
HttpServletResponse
response
)
throws
ServletException
,
IOException
{
int
responseCode
=
con
.
getResponseCode
();
System
.
out
.
println
(
"POST Response Code :: "
+
responseCode
);
if
(
responseCode
==
HttpURLConnection
.
HTTP_OK
)
{
//success
BufferedReader
in
=
new
BufferedReader
(
new
InputStreamReader
(
con
.
getInputStream
()));
String
inputLine
;
StringBuffer
response
=
new
StringBuffer
();
while
((
inputLine
=
in
.
readLine
())
!=
null
)
{
response
.
append
(
inputLine
);
}
in
.
close
();
// print result
System
.
out
.
println
(
response
.
toString
());
}
else
{
System
.
out
.
println
(
"POST request not worked"
);
}
doGet
(
request
,
response
);
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment