08 2024 档案
摘要:make.sh javac -h . HelloJNI.java g++ -I"$JAVA_HOME/include" -I"$JAVA_HOME/include/dawin" -shared -o libhelloJNI.dylib HelloJNI.cpp javac HelloJNI.java
阅读全文
摘要:mkdir temp cd temp jar -xf ../JavaDemo.jar // 修改 cd .. jar -cvfM JavaDemo.jar -C temp/ .
阅读全文
摘要:https://cmake.org/files 这个网址下载快一点
阅读全文
摘要://CMakeLists.txt cmake_minimum_required(VERSION 3.21) project(cns) set(CMAKE_CXX_STANDARD 23) find_package(BISON) find_package(FLEX) BISON_TARGET(MyPa
阅读全文
摘要:!/bin/bash # 指定源目录 SOURCE_DIR="./serialMonitor" # 遍历源目录下所有.java文件 function convert_to_utf8() { local file="$1" encoding=`file -I ${file} | awk -F= '{p
阅读全文
该文被密码保护。
该文被密码保护。
该文被密码保护。
摘要:a1@1deMacBook-Pro phone1 % wsdl2h -o phoneService.h phoneService.wsdl -t api.bat Saving phoneService.h ** The gSOAP WSDL/WADL/XSD processor for C and
阅读全文
摘要:# Project: server # Makefile created by Embarcadero Dev-C++ 6.3 CPP = g++.exe CC = gcc.exe WINDRES = windres.exe OBJ = helloserver.o soapC.o soapServe
阅读全文
摘要://MakefileGSOAP_ROOT = F:\gsoap-2.8\gsoap WSNAME = hello CC = g++ -g -DWITH_NONAMESPACES INCLUDE = -I $(GSOAP_ROOT) SERVER_OBJS =soapC.o stdsoap2.o so
阅读全文
摘要:一 、hello.h #include <iostream> using namespace std; int ns__hello(std::string* name,std::string &greeting); ~ 二、helloclient.cpp #include "soapH.h" #in
阅读全文
摘要:一 、参考 https://blog.csdn.net/Ikaros_521/article/details/103232677 二、hello.h h__hello(char*&); 三、 //helloclient.cpp #include "soapH.h" #include "h.nsmap
阅读全文
摘要:一、 // hello.h int ns__hello(std::string name, std::string& greeting); 二、 //helloclient.cpp #include "soapH.h" #include "ns.nsmap" #include <string> #i
阅读全文