Reading from BigQuery and store data to Google storage (Special Character issue)(从 BigQuery 读取并将数据存储到 Google 存储(特殊字符问题))
问题描述
Reference: Can Google Data flow use existent VM and not temporary created ones?
Code is working, but the issue is that when it saves response from BigQuery to google storage all the Japanese characters are corrupted.
Based on what I have found, need to use .withCoder(StringUtf8Coder.of())
In addition, this is what have tried (but working only locally - DirectRunner)
This is how data looks like (corrupted) : JAPANESE CHRACTERS
Any suggestions? Any .... (((
You need to replace
BufferedReader br = Files.newBufferedReader(pathToFile, StandardCharsets.UTF_8))
by
BufferedReader br = Files.newBufferedReader(pathToFile, Charset.forName("UTF-8"))
这篇关于从 BigQuery 读取并将数据存储到 Google 存储(特殊字符问题)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!