try {
ContentsService contentService = new ContentsService();
List<RepositoryContents> contentList = contentService.getContents(repo);
for(RepositoryContents content : contentList){
System.out.println(content.getContent());
System.out.println(content.getName());
}
} catch (IOException e) {
e.printStackTrace();
}
代码输出:
null
.gitignore
我试图以字符串的形式获取存储库中每个文件的内容,但是对于我尝试过的每个文件,content.getContent()
总是返回null。
我正在做什么,使得content.getContent()
返回null?
PS:文件中没有null
。