如何在MVC 6中显示PDF文件内容?

时间:2018-07-02 14:21:52

标签: c# pdf model-view-controller view

我有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

0 个答案:

没有答案