Java tutorial
/* * Copyright 2017 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.servicecomb.common.rest.codec.produce; import java.io.InputStream; import java.io.OutputStream; import java.nio.charset.StandardCharsets; import javax.ws.rs.core.MediaType; import org.apache.commons.io.IOUtils; import com.fasterxml.jackson.databind.JavaType; public class ProduceTextPlainProcessor extends AbstractProduceProcessor { @Override public String getName() { return MediaType.TEXT_PLAIN; } @Override public void doEncodeResponse(OutputStream output, Object result) throws Exception { output.write(String.valueOf(result).getBytes(StandardCharsets.UTF_8)); } @Override public Object doDecodeResponse(InputStream input, JavaType type) throws Exception { // plainTextstring? return IOUtils.toString(input, StandardCharsets.UTF_8); // TODO: // Class<?> returnCls = type.getRawClass(); // if (returnCls.isPrimitive()) { // // ?char // if (returnCls == char.class) { // return ((String)result).charAt(0); // } // // ?int, long, boolean // return RestObjectMapper.INSTANCE.readValue((String)result, type); // } // else { // // ?String?? // // ????"application/json" // return returnCls.getConstructor(new Class<?>[] {String.class}) // .newInstance((String)result); // } } }