-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix http client contentType charset problem (#3848)
- Loading branch information
Showing
3 changed files
with
130 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,16 +16,16 @@ | |
|
||
package com.alibaba.nacos.common.http.param; | ||
|
||
import com.alibaba.nacos.api.common.Constants; | ||
import com.alibaba.nacos.common.utils.StringUtils; | ||
|
||
/** | ||
* Http Media type. | ||
* | ||
* @author <a href="mailto:[email protected]">liaochuntao</a> | ||
*/ | ||
public final class MediaType { | ||
|
||
private MediaType() { | ||
} | ||
|
||
public static final String APPLICATION_ATOM_XML = "application/atom+xml"; | ||
|
||
public static final String APPLICATION_FORM_URLENCODED = "application/x-www-form-urlencoded;charset=UTF-8"; | ||
|
@@ -46,4 +46,66 @@ private MediaType() { | |
|
||
public static final String TEXT_PLAIN = "text/plain;charset=UTF-8"; | ||
|
||
private MediaType(String type, String charset) { | ||
this.type = type; | ||
this.charset = charset; | ||
} | ||
|
||
/** | ||
* content type. | ||
*/ | ||
private final String type; | ||
|
||
/** | ||
* content type charset. | ||
*/ | ||
private final String charset; | ||
|
||
/** | ||
* Parse the given String contentType into a {@code MediaType} object. | ||
* | ||
* @param contentType mediaType | ||
* @return MediaType | ||
*/ | ||
public static MediaType valueOf(String contentType) { | ||
if (StringUtils.isEmpty(contentType)) { | ||
throw new IllegalArgumentException("MediaType must not be empty"); | ||
} | ||
String[] values = contentType.split(";"); | ||
String charset = Constants.ENCODE; | ||
for (String value : values) { | ||
if (value.startsWith("charset=")) { | ||
charset = value.substring("charset=".length()); | ||
} | ||
} | ||
return new MediaType(values[0], charset); | ||
} | ||
|
||
/** | ||
* Use the given contentType and charset to assemble into a {@code MediaType} object. | ||
* | ||
* @param contentType contentType | ||
* @param charset charset | ||
* @return MediaType | ||
*/ | ||
public static MediaType valueOf(String contentType, String charset) { | ||
if (StringUtils.isEmpty(contentType)) { | ||
throw new IllegalArgumentException("MediaType must not be empty"); | ||
} | ||
String[] values = contentType.split(";"); | ||
return new MediaType(values[0], StringUtils.isEmpty(charset) ? Constants.ENCODE : charset); | ||
} | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
|
||
public String getCharset() { | ||
return charset; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return type + ";charset=" + charset; | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
common/src/test/java/com/alibaba/nacos/common/http/param/MediaTypeTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright 1999-2018 Alibaba Group Holding Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.alibaba.nacos.common.http.param; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
/** | ||
* MediaTypeTest. | ||
* | ||
* @author mai.jh | ||
*/ | ||
public class MediaTypeTest { | ||
|
||
@Test | ||
public void testValueOf() { | ||
MediaType mediaType = MediaType.valueOf(MediaType.APPLICATION_FORM_URLENCODED); | ||
String type = "application/x-www-form-urlencoded"; | ||
String charset = "UTF-8"; | ||
assertEquals(type, mediaType.getType()); | ||
assertEquals(charset, mediaType.getCharset()); | ||
assertEquals(MediaType.APPLICATION_FORM_URLENCODED, mediaType.toString()); | ||
} | ||
|
||
@Test | ||
public void testValueOf2() { | ||
MediaType mediaType = MediaType.valueOf(MediaType.APPLICATION_FORM_URLENCODED, "ISO-8859-1"); | ||
String type = "application/x-www-form-urlencoded"; | ||
String charset = "ISO-8859-1"; | ||
String excepted = "application/x-www-form-urlencoded;charset=ISO-8859-1"; | ||
assertEquals(type, mediaType.getType()); | ||
assertEquals(charset, mediaType.getCharset()); | ||
assertEquals(excepted, mediaType.toString()); | ||
} | ||
|
||
@Test | ||
public void testValueOf3() { | ||
MediaType mediaType = MediaType.valueOf("application/x-www-form-urlencoded", "ISO-8859-1"); | ||
String type = "application/x-www-form-urlencoded"; | ||
String charset = "ISO-8859-1"; | ||
String excepted = "application/x-www-form-urlencoded;charset=ISO-8859-1"; | ||
assertEquals(type, mediaType.getType()); | ||
assertEquals(charset, mediaType.getCharset()); | ||
assertEquals(excepted, mediaType.toString()); | ||
} | ||
|
||
} |