Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6715967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:40:38+00:00 2026-05-26T08:40:38+00:00

My Util.java contains following method: public static boolean isAndroid(HttpServletRequest request) { boolean retVal =

  • 0

My Util.java contains following method:

public static boolean isAndroid(HttpServletRequest request) {
    boolean retVal = false;     
    String browser = request.getHeader("User-Agent");
    if (browser != null && !browser.trim().equals("") && browser.contains("Android")) {
        retVal = true;
    }       
    return retVal;
}

And I’ve below code in BaseAction.java (it also has request variable of type HttpServletRequest) which extends ActionSupport & implements ServletRequestAware, ServletResponseAware.

public boolean isAndroid(){
  return Util.isAndroid(request);
}

Now, I want to check in JSP if device is android & if it is perform certain action, so I’m using below code:

<s:if test="%{#android=='false'}">
   <a href="/myUrl"></a>
</s:if>
<s:else>
  ....
</s:else>

But the above code doesn’t seem to work. Can any one suggest why its not working & if there is another way to check in JSP to see if user is using Android browser?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T08:40:38+00:00Added an answer on May 26, 2026 at 8:40 am

    You’re comparing against the string "false" but should be checking against an actual boolean, and can use <s:if test="android"> or <s:if test="!android"> as required.

    Also, you’re prefixing the property name with a #, which is not necessary for values pushed on to the stack–the # character is only for named values in the stack context.

    All that said, why bother doing it that way?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider the following snippet: import java.util.*; public class EqualsOverload { public static void main(String[]
can i ask why does the following output FALSE? import java.util.Arrays; public class Test2
import java.util.Collection; import example.Event; public interface Query { public boolean hasMore (); public Collection<Event>
I am getting the following warning from my NetBeans IDE. Suspicious call to java.util.Collection.contains
import java.util.*; public class HashMapExample { public static class WriteOnceMap<K, V> extends HashMap<K, V>
I have the following two classes: import java.io.*; import java.util.*; public class User {
I am using java.util.Timer class and I am using its schedule method to perform
I am getting the following error: ERROR: The method killBackgroundProcesses(String) is undefined for the
import java.util.ArrayList; import java.util.Arrays; public class Cloud { private ArrayList<Point> points; private double left;
Here is my code to fetch and display date: import java.util.Calendar; public class Employee

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.