Examples of notPresent()


Examples of com.fineqt.fpb.lib.api.IContainerValue.notPresent()

            }
            //根据httpBody/data来更新
            if (contentLengthValue != null) {
                IContainerValue httpBody = (IContainerValue)msgValue.getField(
                        HTTP_MESSAGE__HTTP_BODY);
                if (httpBody != null && !httpBody.notPresent()) {
                    IOctetstringValue data = (IOctetstringValue)httpBody.getField(
                            HTTP_BODY__DATA);
                    if (data != null) {
                        String text = Integer.toString(data.getLength());
                        contentLengthValue.setText(text);
View Full Code Here

Examples of com.fineqt.fpb.lib.api.IContainerValue.notPresent()

            if (chunkLength != null) {
                IContainerValue chunkData = (IContainerValue)chunkValue.getField(
                        HTTP_CHUNK__CHUNK_DATA);
                //默认为0
                String text = "0";
                if (chunkData != null && !chunkData.notPresent()) {
                    IOctetstringValue data = (IOctetstringValue)chunkData.getField(
                            HTTP_CHUNK_DATA__DATA);
                    if (data != null) {
                        text = Integer.toString(data.getLength());
                    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.