我有MVC应用程序,需要在视图中显示内容。 目前,我正在使用以下代码:
public abstract class Creature{
private String name;
//strategy pattern composition
private SkillInterface skill;
}
public interface SkillInterface {
void attack();
}
public class NoSkill implements SkillInterface {
@Override
public void attack() {
//statements
}
}
Model.FileContent的类型为byte []。它适用于没有大量内容的文件: working。 但是,当我尝试显示包含更多内容的文件时,我得到了 this。