0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

.NETCoreで"shift_jis"を使用する

Last updated at Posted at 2022-07-20

はじめに

using (StreamWriter sw = new StreamWriter(filepath, false, Encoding.GetEncoding("shift_jis")))
{
    ...
}

.NETCoreで上記のようにEncoding.GetEncoding("shift_jis")を指定したところ、実行時にエラーが発生して、
(´-`).。oO(???)
となったので備忘録。
s-jis_error.PNG
要するに、「"shift_jis"なんてしらないよ!」と怒られている。

やること

// ここを追加
System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);
using (StreamWriter sw = new StreamWriter(filepath, false, System.Text.Encoding.GetEncoding("shift_jis")))
{
  ...
}

この一文を追加することで使用可能となる。
ここでは.NETFrameworkでサポートされている全てのエンコードを取得している。

おわりに

.NETCoreではサポートされているエンコーディングが限られているようです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?