sql >> Database >  >> RDS >> PostgreSQL

Wat is de codeer(, 'escape') PostgreSQL-equivalent in Java?

Wil je een array van strings of wil je asdad\000asdasd\000 ? Werk je met een byte-array of een echte String?

String naar byte array (als je met een String werkt)

String str = "\x61736461640061736461736400"
str = str.substring(2); //get rid of \x
byte [] bytes = new byte[str.length()/2];
for(int i = 0; i < result.length; i++) {
  String numberStr = str.substring(i*2,i*2+2);
  int numberInt = Integer.parseInt(numberStr);
  bytes[i] = (byte) numberInt;
}

byte-array naar String ArrayList

ArrayList<String> result = new ArrayList<String>();
int startIndex = 0;
for(int i = 0; i < bytes.length; i++) {
  if(bytes[i] == 0) {
    if(startIndex > i) {
      byte [] stringBytes = new byte[i - startIndex];
      for(int j = startIndex; j < i; j++) {
        stringBytes[j-startIndex] = bytes[j];
      }
      result.add(new String(stringBytes, "US-ASCII"));
    }
    startIndex = i+1;
  }
}

byte-array naar octale escapetekenreeks

DecimalFormat formatter = new DecimalFormat("000");
StringBuilder resultBuilder = new StringBuilder();
for(byte b : bytes) {
  if(b > 0) {
    char c = (char) b;
    resultBuilder.append(c);
  } else {
    int bInt = b & 0xFF;
    String octal = Integer.toString(bInt, 8);
    int numPadZeroesNeeded = 3 - octal.length();
    resultBuilder.append('\');
    for(int i = 0; i < numPadZeroesNeeded; i++) {
      resultBuilder.append('0');
    }
    resultBuilder.append(octal);
  }
}



  1. AsyncQuery met postgresql en dapper met npqsql

  2. SQLEXCEPTION-bericht ophalen in procedures MySQL 5.5.x

  3. Tel het aantal LIKE-matches per Inzending

  4. PHP MYSQL:manier om de tabel in oplopende volgorde weer te geven