Ciao a tutti ho un problema quando cerco di inviare un allegato con la classe javaMail.
codice:
mbp = new MimeBodyPart();
// Get the attachment
DataSource fds = new FileDataSource("c:/scambio/" + filename);
mbp.setDataHandler(new DataHandler(fds));
// Set the filename
mbp.setFileName(fds.getName());
non mi trova il file dicendomi:
DEBUG: java.io.FileNotFoundException: C:\Programmi\Java\jdk1.5.0_05\jre\lib\javamail.pro viders
DEBUG: !anyLoaded
DEBUG: not loading resource: /META-INF/javamail.address.map
DEBUG: java.io.FileNotFoundException: C:\Programmi\Java\jdk1.5.0_05\jre\lib\javamail.add ress.map (Impossibile trovare il file specificato)

Sapete aiutarmi???