File was renamed from src/de/uhilger/calypso/neu/http/HttpApi.java |
| | |
| | | along with this program. If not, see <https://www.gnu.org/licenses/>. |
| | | */ |
| | | |
| | | package de.uhilger.calypso.neu.http; |
| | | package de.uhilger.calypso.http; |
| | | |
| | | import com.sun.net.httpserver.HttpExchange; |
| | | import com.sun.net.httpserver.HttpHandler; |
| | |
| | | if(query != null && query.length() > 0) { |
| | | String qParts[] = query.split("&"); |
| | | for(String qPart : qParts) { |
| | | Logger logger = Logger.getLogger(de.uhilger.calypso.neu.http.HttpApi.class.getName()); |
| | | Logger logger = Logger.getLogger(de.uhilger.calypso.http.HttpApi.class.getName()); |
| | | logger.log(Level.FINER, "qPart: {0}", qPart); |
| | | String pParts[] = qPart.split("="); |
| | | map.put(pParts[0], pParts[1]); |