I've got a little problem. I tried to install emacs, jde etc. on my Win2000
Desktop-PC

emacs 20.7 for WinNT is working, JDK 1.3 is working, I installed the stuff
for JDE inkl. Semantic, Speedbar, elib and Cygwin (all newest versions). I
followed the skript at http://sunsite.dk/jde/ for the configuration. And now
finally everything is starting without error.
Now I tried to compile a simple "Hello World!" program and oooops, this
appeared: Compilation exited abnormally with code 128 at Tue Nov 14 01:29:04

and if I tried after that to run the application, then the following error
appeared:
java.lang.NoClassDefFoundError: test
Exception in thread "main"
Process test exited abnormally with code 1

I've saved the file test.java under the home directory, where also the files
.emacs and .bashrc are situated

***************************************************************
These are the configurations of .emacs:

(setq debug-on-error t)

(setq load-path
       (nconc
          '(
             "c:/arbeitsprogramme/emacs/site"
           )
           load-path))

(add-to-list 'load-path (expand-file-name
"c:/arbeitsprogramme/emacs/site/JDE/lisp"))
(add-to-list 'load-path (expand-file-name
"c:/arbeitsprogramme/emacs/site/Semantic"))
(add-to-list 'load-path (expand-file-name
"c:/arbeitsprogramme/emacs/site/Speedbar"))
(add-to-list 'load-path (expand-file-name
"c:/arbeitsprogramme/emacs/site/elib"))


 ;; If you want Emacs to defer loading the JDE until you open a
;; Java file, edit the following line
(setq defer-loading-jde nil)
;; to read:
;;
;;  (setq defer-loading-jde t)
;;

(if defer-loading-jde
    (progn
      (autoload 'jde-mode "jde" "JDE mode." t)
      (setq auto-mode-alist
            (append
             '(("\\.java\\'" . jde-mode))
             auto-mode-alist)))

(require 'jde))


(pc-selection-mode)
(load "cua-mode")
(CUA-mode t)

(setq binary-process-input t)
(setq shell-file-name "bash")
(setq shell-command-switch "-c")
(setenv "SHELL" shell-file-name)
(setq explicit-shell-file-name shell-file-name)
(setq explicit-sh-args '("-login" "-i"))
(if (boundp 'w32-quote-process-args)
  (setq w32-quote-process-args ?\")) ;; Include only for MS Windows.

****************************************************************************
*
and these of .bashrc:

export PATH=".:${PATH}"
export HOME=/java
export TMOUT=3600
export HISTCONTROL=ignoredups
export FIGNORE='~:.o'
export PS1='//\h/.../\W \$ '

# home key
bind '"\e[1~":beginning-of-line'

# del key
bind '"\e[3~":delete-char'

# end key
bind '"\e[4~":end-of-line'

# pgup key
bind '"\e[5~":history-search-forward'

# pgdn key
bind '"\e[6~":history-search-backward'

alias cp='cp -r'
alias rm='rm -r'
alias ls='ls -F'
alias dir='ls -laF'
alias edit='notepad'

******************************************************
Do you have an idea what the cause could be for this error!?! Please send me
a mail with some understandable tipps for a beginner.
For further information about configuration ask me!

Thanks a lot

Gerd

-----------------------------------------------
Gerd Fuchsberger
St�ssistr. 87
CH-8057 Z�rich
phone: +41 1 3646500
mobile: +41 78 7453281
email: [EMAIL PROTECTED]
phone Luzern: 041 3409288
-----------------------------------------------


Reply via email to