我正在尝试使用我的jsp表单上传图像文件。我能够成功上传它,但不能上传到我想要的目录中。
/mnt/7A46BE1454633621/eclipseworkspace/ecommerce/target/ecommerce/
path :/mnt/7A46BE1454633621/eclipseworkspace/ecommerce/target/ecommerce/
WEB-INF/resources/images/5.jpg
这是当前正在打印的目录位置: -
<?php
$string = <<<EOM
Rajeet Singh|email@gmail.com|0123456789|Delhi
Abhishek|email2@gmail.com|0123456987|Pune
EOM;
$line = explode(PHP_EOL, $string);
$tags = ['name', 'email', 'mobile', 'address'];
$xml = '';
$xml .= "<user>" . PHP_EOL;
foreach($line as $key => $row){
$elements = explode("|",$row);
$xml .= "<item{$key}>" . PHP_EOL;
$boxes = array_map(NULL, $elements, $tags);
foreach($boxes as $box){
$xml .= "<{$box[1]}>{$box[0]}</{$box[1]}>" . PHP_EOL;
}
$xml .= "</item{$key}>" . PHP_EOL;
}
$xml .= "</user>" . PHP_EOL;
echo $xml;
我想在WEB-INF / resources / images中上传我的图片。我怎么能这样做?