; ------------------------------------------------------------------- ; ; json_read.lisp ; ; Oct/11/2013 ; ; ------------------------------------------------------------------- (require :asdf) (load "/usr/share/common-lisp/source/cl-json_0.5.0/cl-json.asd") (require :cl-json) (load "/var/www/data_base/common/common_lisp/file_io.lisp") (load "/var/www/data_base/common/common_lisp/json_manipulate.lisp") ; ------------------------------------------------------------------- (format t "*** 開始 ***~%") (defvar file_json) (setf file_json (car *command-line-argument-list*)) (format t "~a~%" file_json) ; (defvar str_in) (setf str_in (file_to_str file_json)) ; (json_display_proc str_in) ; (format t "*** 終了 ***~%") ; -------------------------------------------------------------------