Here you can find the source of quoteValue(String value)
Parameter | Description |
---|---|
value | The attribute value to quote and escape. |
public static String quoteValue(String value)
//package com.java2s; /*//from w w w. j a v a2 s.com * Copyright 2010 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ public class Main { /** * Quotes and escapes an attribute value by wrapping it with single quotes * and escaping any single quotes inside the value. * * @param value * The attribute value to quote and escape. * * @return The properly quoted and escaped attribute value, ready to be used * in a SimpleDB select query. */ public static String quoteValue(String value) { return "'" + replaceChar(value, "'", "''") + "'"; } protected static String replaceChar(String value, String termToFind, String replacementTerm) { StringBuilder buffer = new StringBuilder(value); int searchIndex = 0; while (searchIndex < buffer.length()) { searchIndex = buffer.indexOf(termToFind, searchIndex); if (searchIndex == -1) { break; } else { buffer.replace(searchIndex, searchIndex + termToFind.length(), replacementTerm); searchIndex += replacementTerm.length(); } } return buffer.toString(); } }