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 5 years have passed since last update.

Java で Azure Bing SpellCheck を利用する

0
Posted at

Java で Azure Bing SpellCheckを利用するには
・自前でHTTPリクエストを作成する
・Azure Java SDKを利用する
の二通りがありますが、SDK利用の方法メモです。
案外たどり着くのに時間がかかりました。

Maven

こちらです。これが意外に見つからなかったです。
https://mvnrepository.com/artifact/com.microsoft.azure.cognitiveservices/azure-cognitiveservices-spellcheck/1.0.2

Sample

こちらです。
https://github.com/Azure-Samples/cognitive-services-java-sdk-samples/blob/master/Language/BingSpellCheck/src/main/java/com/microsoft/azure/cognitiveservices/language/spellcheck/samples/BingSpellCheckSample.java

できないこと

HTTPレスポンスのJSONをそのまま取得してファイルに保存しておき、キャッシュとして利用することでAPI呼び出しの回数を減らすということを考えていたのですが、本家SDKではレスポンスをそのまま取得するメソッドは実装されていないように見えます。そりゃソースコードを変えれば可能なのでしょうけれど。

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?