0

我试图让用户从我的骆驼应用程序中下载一个文本文件。问题是,文件包含 0 个字节(应该是 435b 并且在调试器中)。有人可以查看代码并提供建议吗?

我试图让用户从我的骆驼应用程序中下载一个文本文件。问题是,文件包含 0 个字节(应该是 435b 并且在调试器中)。有人可以查看代码并提供建议吗?

@Component
public class CalendarRoute extends ExceptionHandlingRoutes {

  @Autowired
  private CalendarService calendarService;

  @Override
  public void configure() {
    super.configure();
    rest("/calendar").description("Foo calendaring")
        .produces("plain/text")
        .get("/").description("accepts data to create an ics file with")
        .to("direct:getIcs");

    from("direct:getIcs")
        .process(getIcs());
  }

  private Processor getIcs() {
    return exchange -> {
      exchange.getIn().removeHeader("Content-Length");
      exchange.getIn().setHeader("Content-Type", MediaType.parseMediaType("text/calendar"));
      byte[] file = calendarService.generateCalendarFile();
      exchange.getIn().setBody(file);
    };
  }
}
4

1 回答 1

0

解决了。更改在原始问题中

于 2018-08-30T21:27:26.190 回答