Google的gson库:JsonObject字符串编码问题

时间:2018-11-24 08:12:02

标签: java json encoding jar gson

有人能告诉我发生了什么事吗,因为我从测试中得到的结果一直很奇怪。因此,我在IntelliJ中有一个maven项目,如果我在IDE中运行此代码(请注意西里尔字符串),则输出将如预期的那样。

JsonObject json = new JsonObject();
json.addProperty("message", "тест");
System.out.println("TEST:"+json.get("message").getAsString());

IDE中的输出:TEST:тест

但是,如果我将项目打包到一个jar文件中,则JsonObject的编码会以某种方式混乱,并且上面的代码将导致:

jar从控制台输出:TEST:????

我尝试过的事情:

  • 强制JVM使用-Dfile.enconding = UTF-8只是为了查看这是否会影响它,但没有任何变化。

  • 获取json.get(“ message”)。getAsString()的字节并创建具有指定编码的新字符串new String(bytes,StandardCharsets.UTF_8)

  • 检查了项目的IntelliJ运行参数(未指定任何内容)

  • 对于所有ASCII值大于127的字符,问题仍然存在(提及ASCII是因为UTF和大多数编码都从ASCII继承了前127个字符值)

  • 这不是与控制台相关的问题,因为在支持UTF-8的UI元素上仍然存在相同的问题,这里是一个示例:http://prntscr.com/lmca64。这仍然仅在导出的jar的应用程序上仍然存在!

您知道什么可能导致这种不一致的行为吗? link to the GSON library

更新*: 经过进一步测试后,下面是以下代码的输出:

    JsonObject json = new JsonObject();
    json.addProperty("message", "тест");
    byte[] jsonBytes = json.get("message").getAsString().getBytes();
    for(byte b : jsonBytes) {
        System.out.print(b+" ");
    }
    System.out.println();
    byte[] stringBytes = "тест".getBytes();
    for(byte b : stringBytes) {
        System.out.print(b+" ");
    }

IDE输出:

-47 -126 -48 -75 -47 -127 -47 -126
-47 -126 -48 -75 -47 -127 -47 -126

已编译的jar控制台输出:

63 63 63 63
63 63 63 63

用术语表示这两个字符串相同,但是一旦打包到罐子中,就会发生某些事情。 Decimal to text converter

这是我的pom.xml。以错误的编码导出jar时,我做错什么了吗?

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<groupId>me.ivstiv</groupId>
<artifactId>Trapdoor-client</artifactId>
<version>1.0</version>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <finalName>Trapdoor-client-1.0-fat</finalName>
                <archive>
                    <manifest>
                        <mainClass>core.Main</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
                <appendAssemblyId>false</appendAssemblyId>
            </configuration>
            <executions>
                <execution>
                    <id>make-assembly</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.7.0</version>
            <configuration>
                <source>8</source>
                <target>8</target>
            </configuration>
        </plugin>
    </plugins>
</build>

<dependencies>
    <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.8.5</version>
    </dependency>
</dependencies>

0 个答案:

没有答案