EmacsÖе÷ÓÃJavaµÄnative2ascii
(defun native2ascii (&optional start end)
(interactive
(list
(if (and transient-mark-mode mark-active)
(region-beginning))
(if (and transient-mark-mode mark-active)
(region-end))))
(shell-command-on-region start end "native2ascii.exe" nil t))
(defun ascii2native (&optional start end)
(interactive
(list
(if (and transient-mark-mode mark-active)
(region-beginning))
(if (and transient-mark-mode mark-active)
(region-end))))
(shell-command-on-region start end "native2ascii.exe -reverse" nil t))
ÎÒÀ´ÆÀÂÛ: