- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在为一个应用程序开发电子邮件过滤器,该应用程序扫描邮件以确定它们是否是垃圾邮件,这是我的类(class):
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;
import ca.etsmtl.logti.log619.lab05.utilities.EmailSplicer;
public class MotsClesFilter implements EmailFilter {
final String NAME = "Filtrage par mots cles";
private Pattern chaineSpam;
private Matcher chaineCourriel;
private int nbOccMotSpam =0;
private byte confidenceLevel;
@Override
public String getFilterName() {
return this.NAME;
}
@Override
public byte checkSpam(MimeMessage message) {
analyze(message);
switch(this.nbOccMotSpam){
case 0:
this.confidenceLevel = 1;
break;
case 1:
this.confidenceLevel = CANT_SAY;
break;
case 2:
this.confidenceLevel= 50;
break;
case 3:
this.confidenceLevel = 70;
break;
case 4 :
this.confidenceLevel = 80;
break;
} return (getConfidenceLevel());
}
public void analyze(MimeMessage message){
try {
List<String> listeChaines = new ArrayList<String>();
BufferedReader bis = new BufferedReader(new InputStreamReader(new FileInputStream(new File("SpamWords.txt"))));
while(bis.ready()){
String ligne = bis.readLine();
listeChaines.add(ligne);
}
String[] tabMots = EmailSplicer.getMessageContent(message);
for (int i =0;i<tabMots.length;i++){
/*System.out.print("*************************************");
System.out.print(tabMots[0]);
System.out.print("**************************************");*/
for (int j =0; j<listeChaines.size();j++){
this.chaineSpam = Pattern.compile(listeChaines.get(j));
this.chaineCourriel = this.chaineSpam.matcher(tabMots[i]);
if (this.chaineCourriel.matches())
this.nbOccMotSpam++;
}
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (MessagingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Override
public byte getConfidenceLevel() {
// TODO Auto-generated method stub
return this.confidenceLevel;
}
@Override
public boolean enabled() {
// TODO Auto-generated method stub
return true;
}
}
这是我正在使用的 EmailSplicer 实用程序类:
import java.io.IOException;
import java.util.ArrayList;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.internet.MimeMessage;
/**
* Utility class to return all the content of a MimeMessage
* @author Maxime Caumartin <maxime.caumartin.1@ens.etsmtl.ca>
*/
public class EmailSplicer {
/**
* Contains the types of email parts that can be analyzed by this class.
* @author Maxime Caumartin <maxime.caumartin.1@ens.etsmtl.ca>
*/
private enum ContentTypes
{
Plain("text/plain"), HTML("text/html"), Multipart("multipart"), Unknown(
"?");
private String type;
ContentTypes(String type)
{
this.type = type;
}
public static ContentTypes getType(String type)
{
if (type.contains(Plain.type))
return Plain;
if (type.contains(HTML.type))
return HTML;
if (type.contains(Multipart.type))
return Multipart;
return Unknown;
}
}
/**
* Recursive method that passes through all the parts of the Mutlipart message and returns an ArrayList<String> of the content of these parts.
* @param multiPartMsg The Multipart that needs to be dissected.
* @return The ArrayList<String> containing all the content of the Mutlipart message.
* @throws MessagingException Exception thrown if the analyzer cannot read the message.
* @throws IOException Exception thrown if the encoding type isn't valid.
*/
private static ArrayList<String> getMutlipartContent(Multipart multiPartMsg)
throws MessagingException, IOException
{
ArrayList<String> returnTable = new ArrayList<String>(
multiPartMsg.getCount());
for (int i = 0; i < multiPartMsg.getCount(); i++)
{
switch (ContentTypes.getType(multiPartMsg.getBodyPart(i)
.getContentType()))
{
case Plain:
returnTable.add((String) multiPartMsg.getBodyPart(i)
.getContent());
break;
case HTML:
String s = org.clapper.util.html.HTMLUtil.textFromHTML((String) multiPartMsg.getBodyPart(i)
.getContent()).trim();
if (s.length() != 0)
returnTable.add(s);
break;
case Multipart:
returnTable
.addAll(getMutlipartContent((Multipart) multiPartMsg
.getBodyPart(i).getContent()));
break;
default:
}
}
return returnTable;
}
/**
* Returns all the content of the MimeMessage passed as a parameter. The whole content will be parsed.
* @param message The MimeMessage containing textual information.
* @return The array of string containing all the strings from the content of the message.
* @throws MessagingException Exception thrown if the analyzer cannot read the message.
* @throws IOException Exception thrown if the encoding type isn't valid.
*/
public static String[] getMessageContent(MimeMessage message)
throws MessagingException, IOException
{
String contentType = message.getContentType();
switch (ContentTypes.getType(contentType))
{
case Plain:
return new String[] { (String) message.getContent() };
case Multipart:
return getMutlipartContent(
(Multipart) message.getContent()).toArray(new String[0]);
case HTML:
String s = org.clapper.util.html.HTMLUtil.textFromHTML((String) message
.getContent()).trim();
if (s.length() != 0)
return new String[] {s};
default:
return new String[0];
}
}
}
现在,当我执行整个应用程序的主要方法时,这是我遇到的异常:
java.io.UnsupportedEncodingException: iso-0621-9
at sun.nio.cs.StreamDecoder.forInputStreamReader(Unknown Source)
at java.io.InputStreamReader.<init>(Unknown Source)
at com.sun.mail.handlers.text_plain.getContent(text_plain.java:82)
at javax.activation.DataSourceDataContentHandler.getContent(Unknown Source)
at javax.activation.DataHandler.getContent(Unknown Source)
at javax.mail.internet.MimeBodyPart.getContent(MimeBodyPart.java:629)
at ca.etsmtl.logti.log619.lab05.utilities.EmailSplicer.getMutlipartContent(EmailSplicer.java:69)
at ca.etsmtl.logti.log619.lab05.utilities.EmailSplicer.getMessageContent(EmailSplicer.java:101)
at ca.etsmtl.logti.log619.lab05.filter.MotsClesFilter.analyze(MotsClesFilter.java:66)
at ca.etsmtl.logti.log619.lab05.filter.MotsClesFilter.checkSpam(MotsClesFilter.java:34)
at ca.etsmtl.logti.log619.lab05.Application.main(Application.java:107)
有人可以告诉我如何修复它吗?
最佳答案
ISO-0621-9 不是一种编码,如果是的话,也不是 supported by Java 。 。我猜这甚至可能是垃圾邮件的一个很好的指标:没有有效的编码=>垃圾邮件。
在谷歌上搜索一下ISO 621表明ISO-621是《锰矿——金属铁含量的测定(金属铁含量不超过2%)——磺基水杨酸光度法”的国际标准
我想说这与计算机关系不大,与编码关系更小;)
关于java.io.UnsupportedEncodingException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15887005/
所以我尝试从字符串中使用 getBytes,并且我读到,如果它遇到一个字符,它无法转换为真实数据,它将抛出 UnsupportedEncodingException。我添加了 java.io 来提供异
您好,我正在为一个应用程序开发电子邮件过滤器,该应用程序扫描邮件以确定它们是否是垃圾邮件,这是我的类(class): import java.io.BufferedReader; import jav
我正在尝试将字符串转换为 UTF-8 编码。但是编译失败,因为某些代码“抛出 UnsupportedEncodingException”。 String s = "1,2,3,4"; String s
我有一个读取用户输入然后写入文件的程序。在该程序读取该文件并执行一些基本的算术函数之后。然后结果显示在屏幕上供用户使用。之后我想清除该文件,因为它就像程序的缓存一样,不需要永久存储。 一切正常,我可以
如果我将 UTF-16 编码的文件传递给以下代码,那么我会得到 UnsupportedEncodingException 吗? try { BufferedReader br
什么类型的内容会导致此异常? Caused by: java.io.UnsupportedEncodingException: cp932 at sun.nio.cs.StreamDe
我从文档中了解到 UnsupportedEncodingException只有当我将错误的编码指定为 URLDecoder.decode(String, String) 方法的第二个参数时,才能抛出。
我有以下代码,需要通过 try-catch 或 throws 声明处理 UnsupportedEncodingException,但我不想使用它们。 @Test public void ser
我的实现如下: public String encodeString(String testString) { try { return URLEncoder.encode(t
我正在尝试在我的代码中使用 IDENTITY_H 字体编码: BaseFont courier = BaseFont.createFont(BaseFont.COURIER, BaseFont.ID
我正在尝试使用 PreferenceActivity(我的目标是 API 级别 8)向我的应用程序添加设置,我一开始只有一个复选框: 我的 PreferenceActivity 子类只
我有一些匈牙利文本,我希望使用 UCS2 编码对其进行编码 String stringEncoding = "UCS-2"; String contentHardCoded = new String(
当我的 servlet doPost 方法中有此代码时,一切都很好。 @Override protected void doPost(HttpServletRequest request, HttpS
我有一个 java 应用程序,它使用带有附件的电子邮件。有时我会看到这样的错误: java.io.UnsupportedEncodingException: X-iso88591 at sun.nio
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a mi
作为我的 J2EE 应用程序的电子邮件服务的一部分,我编码为 BASE64 body = MimeUtility.encodeText(orig_mail_body,"UTF-8","BASE64")
我正在使用专有 API 在 eclipse 中开发 Java 程序,它在运行时抛出以下异常: java.io.UnsupportedEncodingException: at java.lan
任何人都可以建议一个示例字符串(sampleString 的值)来获取 下面给出的代码片段中的UnsupportedEncodingException。 public static String de
我在 Grails 下运行的 Grails Web 应用程序中遇到了一个奇怪的问题: java.io.UnsupportedEncodingException 由于各种未知的编码字符串(例如 "ISO
我正在开发一个 Java 即时通讯应用程序。我尝试实现 Demonstrate the use of RSA Public-key system to exchange messages that a
我是一名优秀的程序员,十分优秀!