what is the correct way to concat strings in c++ and execute using system

时间:2015-06-26 09:51:10

标签: android c++ java-native-interface stdstring

The following code is used in a native c++ library to create directory under android shell,

JNIEXPORT void JNICALL Java_com_xprea_lib_STB_mkdir(JNIEnv* env, jobject javaThis, jstring jdir) {
const char* dir = (env)->GetStringUTFChars(jdir, 0);    
string d=dir;
string cmd= "su -c 'mkdir -p "+d+"'";
const char* c=cmd.c_str();
LOGE("s%s",c);
system(c);

}

it's not working because the command is built from concatenated strings. I tested it without concatenation and it's working

What is the correct way to concat the strings all together and send them to system()

2 个答案:

答案 0 :(得分:1)

Your concatenation "su -c 'mkdir -p "+d+"'" results in the string

su -c 'mkdir -p BLA' (If the dir name is BLA)

So the command su searches for a command named mkdir -p BLA which it won't find. Better make:

"su -c mkdir -p '"+d+"'" your concatenation. This way it will search for a command named mkdir which it hopefully will find, and the directory name may even contain white space (although you would have to escape the ' and \ character with \.

答案 1 :(得分:0)

Replace these 3 lines :

string d=dir;
string cmd= "su -c 'mkdir -p "+d+"'";
const char* c=cmd.c_str();

With these lines :

char cmd[1024];
sprintf(cmd,"su -c 'mkdir -p %s '",dir);