Коллекция байтов в строку на clojure

следующий код

(defn caesar-block-cypher
  "Computes the caesar block cypher for the given text with the k key. Returns an array of bytes"
  [k text]
  (let [byte-string (.getBytes text)]
    (loop [return-byte-array [] byte-string byte-string]
      (if (= '() byte-string)
        return-byte-array
        (recur
          (conj return-byte-array (byte (+ k (first byte-string))))
          (rest byte-string))))))

возвращает массив байтов после обработки шифра Цезаря с ключом k в тексте. Я хочу преобразовать обратно массив байтов в строку или выполнить шифр над строкой напрямую, но (new String return-byte-array) не работает. Есть предложения?


EDIT: Спасибо за ответы. Я recodified это на более функциональном стиле (который на самом деле работает):

(defn caesar-block-cypher
  "Computes the caesar block cypher for the given text with the k key."
  [k text & more]
    (let [byte-string (.getBytes (apply str text (map str more)))]
      (apply str (map #(char (mod (+ (int %) k) 0x100)) byte-string))))

4 ответов


(let [byte-array (caesar-block-cypher 1 "Hello, world!")]
    (apply str (map char byte-array)))

используйте строковый конструктор java для создания строки быстро, как это,

(let [b (caesar-block-cypher 1 "Hello World")]
  (String. b))

AFAIK ceaser chipher просто сдвигает символы почему вы имеете дело с байтами,


(let [s "Attack"
      k 1
      encoded (map #(char (+ (int %) k)) s)
      decoded (map #(char (- (int %) k)) encoded)]
  (apply str decoded))


можно использовать slurp, Он также работает для байтовых массивов:

от https://clojuredocs.org/clojure.core/slurp#example-588dd268e4b01f4add58fe33

;; you can read bytes also

(def arr-bytes (into-array Byte/TYPE (range 128)))
(slurp arr-bytes)