- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for SetContentType (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/OsddHelper.java
this.encoding = encoding; } /** * Sets the content type. * * @param contentType the content type */ public void setContentType(final String contentType) { this.contentType = contentType; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
} else { enc = encoding; } buf.append(enc); final HttpServletResponse response = LaResponseUtil.getResponse(); response.setContentType(buf.toString()); writeHeaders(response); try (PrintWriter out = new PrintWriter(new OutputStreamWriter(response.getOutputStream(), enc))) { out.print(text);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0)