• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:Error 500)

Why do I get an Internal Servlet Error when comparing strings in a Servlet?

このQ&Aのポイント
  • I'm encountering an Internal Servlet Error when trying to compare strings in a servlet.
  • I have a line of code that compares two strings in a servlet, but instead of a compile error, I get an Internal Servlet Error.
  • The return value of request.getParameter('order_flg') is 'on', which I have confirmed by printing it out. I'm using the equals method to compare the strings, as the return value is of type String. Why am I getting an error?

質問者が選んだベストアンサー

  • ベストアンサー
noname#2205
noname#2205
回答No.1

私が使うときは以下のようにしてます。 終了ボタン("exit_btn")が押されたとき、 ならば、このようにしていますが、 これではだめですか?? if(request.getParameter("exit_btn") != null){ ・・・・ }

nezunezu
質問者

お礼

ありがとうございます! request.getParameter("order_flg") != null と書いて上手くいったりいかなかったりすることがあります。 最初nullと比較していたのですが・・・。 いろいろやってみようと思います。 ありがとうございました。

関連するQ&A