Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Oreilly servlet 类截断字符串。
我的问题是我不想使用整个字符串,而是其中的一部分。paramPart.getStringValue() 将给出未切割的值,但我有一个场景需要我获取字符串的一部分。例如:字符串值可以是"xxxyyyy ,,,"而我只需要使用"xxxyyyy"。我希望我的问题很清楚。任何帮助将不胜感激。附言
我在我的 jsp 应用程序上使用 com.oreilly.servlet 类。
我找到了一个解决我的问题的方法,使用 java 的 substring() 方法。
首先我通过 String value = paramPart.getStringValue(); 然后我继续创建另一个变量 String valuetrucated = value.substring(0, value.length() - 2);
这会将字符串值截断为字符串末尾的第三个字符...