mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-04-02 09:46:23 +02:00
57 lines
1.3 KiB
Java
57 lines
1.3 KiB
Java
package com.intellectualcrafters.json;
|
|
|
|
/**
|
|
* The HTTPTokener extends the JSONTokener to provide additional methods for the parsing of HTTP headers.
|
|
*
|
|
* @author JSON.org
|
|
* @version 2014-05-03
|
|
*/
|
|
public class HTTPTokener extends JSONTokener
|
|
{
|
|
/**
|
|
* Construct an HTTPTokener from a string.
|
|
*
|
|
* @param string A source string.
|
|
*/
|
|
public HTTPTokener(final String string)
|
|
{
|
|
super(string);
|
|
}
|
|
|
|
/**
|
|
* Get the next token or string. This is used in parsing HTTP headers.
|
|
*
|
|
* @return A String.
|
|
*
|
|
* @throws JSONException
|
|
*/
|
|
public String nextToken() throws JSONException
|
|
{
|
|
char c;
|
|
char q;
|
|
final StringBuilder sb = new StringBuilder();
|
|
do
|
|
{
|
|
c = next();
|
|
}
|
|
while (Character.isWhitespace(c));
|
|
if ((c == '"') || (c == '\''))
|
|
{
|
|
q = c;
|
|
for (;;)
|
|
{
|
|
c = next();
|
|
if (c < ' ') { throw syntaxError("Unterminated string."); }
|
|
if (c == q) { return sb.toString(); }
|
|
sb.append(c);
|
|
}
|
|
}
|
|
for (;;)
|
|
{
|
|
if ((c == 0) || Character.isWhitespace(c)) { return sb.toString(); }
|
|
sb.append(c);
|
|
c = next();
|
|
}
|
|
}
|
|
}
|