Giter Club home page Giter Club logo

Comments (3)

ForkBug avatar ForkBug commented on May 29, 2024

同样的问题,百度的文档示例在netcore上跑不通

Unhandled Exception: System.ArgumentException: 'GBK' is not a supported encoding name. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvider method.
Parameter name: name
at System.Text.EncodingTable.internalGetCodePageFromName(String name)
at System.Text.EncodingTable.GetCodePageFromName(String name)
at Baidu.Aip.Nlp.Nlp.DefaultRequest(String uri)

from dotnet-sdk.

pePZqFHzJVofRgEDrn5L avatar pePZqFHzJVofRgEDrn5L commented on May 29, 2024

恩,虽然在调用sdk的项目中Encoding.RegisterProvider一下也能解决,但是感觉不太友好。

from dotnet-sdk.

hoilung avatar hoilung commented on May 29, 2024

同样的问题,百度的文档示例在netcore上跑不通

Unhandled Exception: System.ArgumentException: 'GBK' is not a supported encoding name. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvider method.
Parameter name: name
at System.Text.EncodingTable.internalGetCodePageFromName(String name)
at System.Text.EncodingTable.GetCodePageFromName(String name)
at Baidu.Aip.Nlp.Nlp.DefaultRequest(String uri)

今天用dotnet core 也发现这个问题了.core里面没有gbk编码,需要单独引用,可以参考下面

1,nuget 安装 System.Text.Encoding.CodePages
2,程序入口main里面注册下
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
3,gbk编码
var text="百度是一家高科技公司";
var input = System.Text.Encoding.GetEncoding("gb2312").GetString(System.Text.Encoding.UTF8.GetBytes(text)); ;
var client = new Baidu.Aip.Nlp.Nlp(API_KEY, SECRET_KEY);
client.SentimentClassify(input)

from dotnet-sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.